
//==================================
function ScrollMessage() {
   window.status = msg.substring(pos, msg.length) + spacer + msg.substring(0, pos);
   pos++;
   if (pos > msg.length) pos = 0;
   window.setTimeout("ScrollMessage()",200);
}

//==================================
function setVariables() {
howmany=7;
y=70;
x=415;
ob=1;
max=20;

if (document.layers) dS="document.", sD="", v=".top=";
else if (document.all) dS="", sD=".style", v=".pixelTop=";

if (document.getElementById) scrollUp6();
else scrollUp();
}

//==================================

function scrollUp() {
if (ob==howmany+1) ob=1;
if (ob<howmany+1){
	objectX="object"+ob;y-=2;
	eval(dS + objectX + sD + v + y);
	if (y<-40) y=70, ob+=1; 
	setTimeout("scrollUp()",40);
   }
}

//==================================

function scrollUp6() {
if (ob==howmany+1) ob=1;
if (ob<howmany+1){
	objectX="object"+ob;y-=2;
	d = document.getElementById(objectX);
	d.style.top=y;
	eval (d);
	if (y<-40) y=70, ob+=1; 
	setTimeout("scrollUp6()",40);
   }
}