<!--
function init() {
	box1.style.scrollbarBaseColor='black';
	box1.style.scrollbarDarkShadowColor='black';
	box1.style.scrollbar3dLightColor='black';
	box1.style.scrollbarArrowColor='red'
}

var blank = "./images/blank.gif";

var topedge = 420;  // location of news box from top of page
var leftedge = 10;  // location of news box from left edge
var boxheight = 50;  // height of news box
var boxwidth = 150;  // width of news box
var scrollheight = 280; // total height of all data to be scrolled

function scrollnews(cliptop) {
	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';
	setTimeout("scrollnews(" + cliptop + ")", 80);
}
// -->