
var blank = 'C:\Documents and Settings\CARLETO\My Documents\My Pictures\blank.gif';
//do not change these three unless the box on the home page changes
topedge = 200;  // location of news box from top of page
leftedge = 28;  // location of news box from left edge
boxwidth = 210;  // width of news box

boxheight = 340;  // height of news box increase this number as info is added to the scroll box
scrollheight = 320; // total height of all data to be scrolled  increase this number as info is added to the scroll box                 
scrollspeed = 75;  //adjust based on the number of lines of data

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 + ')', scrollspeed);
}

function bldBombSquad()
{
//document.write("<div ID='news' style='position:absolute; visibility:hidden;top:1; left:1; width:125; height:440;clip:rect(10,50,440,10); border-width:0px;'>");
document.write("<div ID='news' style='position:absolute; visibility:hidden;top:1; left:1; width:125; height:140;clip:rect(200,200,200,200); border-width:0px;'>");
document.write("<table border=0 cellpadding=1 cellspacing=0 bgcolor='white'>");
document.write("<tr>");
document.write("<td align='LEFT' bgcolor='#FFFFF0' valign='top'>");
//<!-- Your News Items are Here -->



document.write("<b>Who will be the <br>");
document.write("first in 2010?</b><br>");


/*
document.write("<br>");
document.write("<br>");
document.write("<b>Junior Diamondbacks</b><br>");
document.write("Anthony Davilli 2<br>");
document.write("Kyle Leclair<br>");
document.write("Zacharey Rodriguez<br>");
document.write("Kirk Castonguay<br>");
document.write("<b>Junior A’s</b><br>");
document.write("Tyler Moccio<br>");
document.write("<br>");

*/
document.write("<br>");
document.write("<br>");

//<!-- End Of Your News Items -->

document.write("</td>");
document.write("</tr>");
document.write("</table>");
document.write("</div>");

document.write("<p><center>");
}
