
// NEWS TICKER
// The number passed by scrollnews(0) is where in the text it will start to scroll.
topedge = 121;  // location of news box from top of page
leftedge = 210;  // location of news box from left edge
boxheight = 82;  // height of news box
boxwidth = 600;  // width of news box
scrollheight = 315; // total height of all data to be scrolled

function scrollnews(cliptop) {
if (document.layers) {
parent.newsDiv = document.news;
parent.newsDiv.clip.top = cliptop;
parent.newsDiv.clip.bottom = cliptop + boxheight;
parent.newsDiv.clip.left = 0;
parent.newsDiv.clip.right = boxwidth + leftedge;
parent.newsDiv.left = leftedge;
parent.newsDiv.top = topedge - cliptop;
}
else {
parent.newsDiv = news.style;
parent.newsDiv.clip = "rect(" + cliptop + "px " + (boxwidth + leftedge) + "px " + (cliptop + boxheight) + "px 0px)";
parent.newsDiv.pixelLeft = leftedge;
parent.newsDiv.pixelTop = topedge - cliptop;
}
cliptop = (cliptop + .25) % (scrollheight + boxheight);
newsDiv.visibility='visible';
setTimeout("scrollnews(" + cliptop + ")", 30); // Last Number Is Scroll Speed
}
//  End -->