
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 = 360;  // height of news box. increase this number as info is added to the scroll box (30 at beginning of season)
scrollheight = 360; // total height of all data to be scrolled.  increase this number as info is added to the scroll box  (about 320 mid season)               
scrollspeed = 75;  //adjust based on the number of lines of data (150 to start season.  75 by mid season. higher=slower)

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()
{
    // adjust boxheight, scrollheight & scrollspeed as needed when adding names to the bomb squad

//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("<br>");
document.write("<b>Farm Mad Dogs</b><br>");
document.write("Dawson Mansfield<br>");
document.write("<br>");

document.write("<br>");
document.write("<b>Majors Cubs</b><br>");
document.write("Chris Gage 4<br>");
document.write("Brandan Ledoux 2<br>");
document.write("Scott Conway<br>");
document.write("Wes Asselin<br>");
document.write("<br>");
document.write("<b>Major Hurricanes</b><br>");
document.write("Antonio Bruno 2<br>");
document.write("Luke Jodoin 4<br>");
document.write("<br>");
document.write("<b>Major Mariners</b><br>");
document.write("Eric Matland<br>");
document.write("Paul Taft 2<br>");
document.write("Cody Plamondon 2<br>");
document.write("<br>");
document.write("<b>Major Mets</b><br>");
document.write("Dominic Grassetti 3<br>");
document.write("Michael Destefano<br>");
document.write("<br>");

document.write("<br>");
document.write("<b>Junior Reds</b><br>");
document.write("Ruben Melendez 2<br>");
document.write("<br>");
document.write("<b>Junior Renegades</b><br>");
document.write("JC Maziarz 2<br>");
document.write("<br>");
document.write("<b>Junior Mets</b><br>");
document.write("Connor Sheehan<br>");
document.write("Jeremy Davis<br>");
document.write("<br>");
document.write("<b>Junior Red Sox</b><br>");
document.write("Jimmy Rondonelli<br>");
document.write("<br>");
document.write("<b>Junior Seals</b><br>");
document.write("Mark Couture-King<br>");
document.write("<br>");
document.write("<b>Junior Warriors</b><br>");
document.write("Kirk Castonguay 3<br>");
document.write("<br>");
document.write("<b>Junior Royals</b><br>");
document.write("Zak Foster<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>");
}
