///////////////////////////////////////////////////

//                                               //

//               Java Library                    //

//                                               //

///////////////////////////////////////////////////



///////////////////////////////////////////////////

// Splash Rotator                                //

///////////////////////////////////////////////////

rnd.today=new Date();

rnd.seed=rnd.today.getTime();

function rnd() {

 rnd.seed = (rnd.seed*9301+49297) % 233280;

 return rnd.seed/(233280.0);

 };

function rand(number) {

 return Math.ceil(rnd()*number);

 };



///////////////////////////////////////////////////

// PopUp Functions                               //

///////////////////////////////////////////////////

function PopUp(FileName, Width, Height) {

 window.open(FileName,'','width='+Width+',height='+Height+',top=50,left=50,toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,copyhistory=no,scrollbars=yes');

 }



///////////////////////////////////////////////////

// Push the ticker Applet into XHTML Strict      //

///////////////////////////////////////////////////

function applet(fileName){

document.write('<applet code="conveyor.class" width="600" height="30">');

document.write('<param name="speed" value="50" />');

document.write('<param name="scrollfactor" value="1" />');

document.write('<param name="ledcolour" value="yellow" />');

document.write('<param name="backcolour" value="black" />');

document.write('<param name="framecolour" value="darkgray" />');

document.write('<param name="ledoffcolour" value="darkgray" />');

document.write('<param name="framethick" value="2" />');

document.write('<param name="ledsize" value="2" />');

document.write('<param name="ledtype" value="0" />');

document.write('<param name="ledspacing" value="1" />');

document.write('<param name="href" value="index.html" />');

document.write('<param name="file" value="'+ fileName +'" />');

document.write('</applet>');

}

