// JavaScript Document
function doMarquee()
{
	var opera = navigator.userAgent.indexOf('Opera') != -1;
	if(opera)
		return;
		
	var ie4 = navigator.appName.indexOf('Microsoft') != -1 && parseFloat(navigator.appVersion) >= 4;
	if(!ie4)
		return;
		
	if(!document.all['marquee'])
		return;
	
	var numSnippets = 1;
	if(!numSnippets)
		return;
	
	var snippet = new Array(numSnippets);
	snippet[0] = "...Congratulations to Chris Southward for bowling his first <span style='color:red'>300 game</span> in The English Junior Open at Nuneaton."
//	snippet[0] = "...A big well done to Chris Southward for making the Junior Team England Under 19's Triple Crown team";
//	snippet[0] = "...Success at the NAYBC 40th Annual Youth Championships 2006! More news to follow soon.";
//	snippet[0] = "...Congratulations to Adam Tabron for rolling a 707 series ...Games of 236, 226 and 245 ...Well Done!!";
//	snippet[1] = "...Congratulations to Ian Davies for rolling a 741 series! ...Games of 290, 204 and 247!!!"
//	snippet[2] = "...Sunderland - Here we come!";
//	snippet[3] = "...Chris Southward wins the U16s England Trials for the Triple Crown";
//	snippet[4] = "...Two in a row for Nick Winstanley in Bowler Club North Division B......Good luck to Junior Team England girls & boys at the European Youth Championships!";
//	snippet[5] = "...Nick Winstanley finished 2nd in the round robin at the 2004 British Junior Grand Prix";
//	snippet[6] = "...Nick Winstanley wins Division B of Bowlers Club North. Well done!";
//	snippet[7] = "*** Happy New Year *** Happy New Year *** Happy New Year *** Happy New Year *** ";
//	snippet[8] = "Congratulations, marvelous, wonderful, terrific... Our own Shannen Bamford is the new British Open Under 12 Champion!!!";
//	snippet[9] = "Breaking News...It's official...Jo Allsebrook is Squirrel Killer Number Two!!!";

	var randNum = Math.max(0,Math.round(Math.random() * numSnippets) - 1);
	var htmlStr = "<MARQUEE scrollamount=\"5\" scrolldelay=\"100\" direction = \"left\" style = \"color: blue; font-size: 14pt; width: 100%; height: 22;  padding-top: 10px; padding-bottom: 10px;\">";
	
	htmlStr += "<IMG hspace=\"5\" width=\"20\" height=\"21\" src=\"images/pin3a.jpg\">";
	htmlStr += "<em>" + snippet[randNum] + "</em>";
	htmlStr += "<IMG hspace=\"5\" width=\"20\" height=\"21\" src=\"images/pin2a.jpg\">";
	htmlStr += "</MARQUEE>";
	
	htmlStr += "<EMBED SRC=\"sounds/bowling.au\" autostart=\"true\" hidden=\"true\">";
	
//	document.all['marquee'].innerHTML = htmlStr;
}
