<!--
if (navigator.appVersion.indexOf("2.") != -1)
	{ Check = false; }

if ((navigator.appVersion.indexOf("3.") != -1) && (navigator.appName.indexOf("Explorer") != -1))
	{ Check = false; } 
else 
	{
	Check = true;
	var theBullet = new Image;
	var theBullet_Over = new Image;
	var theBullet2 = new Image;
	var theBullet2_Over = new Image;
	
	theBullet.src = "/Images/Bullets/GreenSquare.gif";
	theBullet_Over.src = "/Images/Bullets/BlueSquare.gif";
	theBullet2.src = "/Images/Bullets/RedSquare.gif";
	theBullet2_Over.src = "/Images/Bullets/GoldSquare.gif";
	}
	
	function BulletOver(Bullet)
	{
		if (Check==true) { document[Bullet].src = theBullet_Over.src }
	}

	function BulletOut(Bullet)
	{
		if (Check==true) { document[Bullet].src = theBullet.src }
	}

	function BulletOver2(Bullet)
	{
		if (Check==true) { document[Bullet].src = theBullet2_Over.src }
	}

	function BulletOut2(Bullet)
	{
		if (Check==true) { document[Bullet].src = theBullet2.src }
	}
// -->