<!-- Begin

topedge = 55;  // location of news box from top of page
leftedge = 520;  // location of news box from left edge
boxheight = 95;  // height of news box
boxwidth = 170;  // width of news box
scrollheight = 400; // total height of all data to be scrolled

var intTimeoutID;
var blnStopScroll = false;
var cliptop = 0;

function scrollnews() {
	if (document.layers) {
		newsDiv = document.news;
		newsDiv.clip.top = cliptop;
		newsDiv.clip.bottom = cliptop + boxheight;
		newsDiv.clip.left = 0;
		newsDiv.clip.right = boxwidth + leftedge;
		newsDiv.left = leftedge;
		newsDiv.top = topedge - cliptop;
	}
	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);
	newsDiv.visibility='visible';
	if (!blnStopScroll) {
		intTimeoutID = setTimeout("scrollnews(" + cliptop + ")", 50);
	}
}
//  End -->
