// JavaScript Document
<!--

var blank = "blank.gif";
topedge = 5;  		// location of news box from top of page
leftedge = 30;  		// location of news box from left edge
boxheight = 185;  	// height of news box
boxwidth = 150;  		// width of news box
scrollheight = 650; 	// total height of all data to be scrolled
function scrollnews(cliptop) {
if (document.layers) {
newsDiv = document.news;
newsDiv.clip.top = cliptop;     			//  Starting value 0
newsDiv.clip.bottom = cliptop + boxheight;  //  bottom = 185
newsDiv.clip.left = 0;						//  clip.left = 0			
newsDiv.clip.right = boxwidth + leftedge;	//	clip.right = 150
newsDiv.left = leftedge;					//  left = 715
newsDiv.top = topedge - cliptop;			//  top = 0
}
else {
newsDiv = news.style;
newsDiv.clip = "rect(" + cliptop + "px " + (boxwidth + leftedge) + "px " + (cliptop + boxheight) + "px 0px)";
newsDiv.pixelLeft = leftedge;
newsDiv.pixelTop = topedge - cliptop;
}
cliptop = (cliptop + 1) % (scrollheight + boxheight-200);
newsDiv.visibility='visible';
setTimeout("scrollnews(" + cliptop + ")", 20);
}
//  End -->

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
//-->