<!--
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 }
	}



//Function for displaying images animation
// on onomouseover and onmouseout event

var check;


	
	if (navigator.appVersion.indexOf("2.") != -1) { check = false; }

	if ((navigator.appVersion.indexOf("3.") != -1) && (navigator.appName.indexOf("Explorer") != -1))
		{ check = false; }
	else
		{ check = true; } 

	if (check == true)
		{
			var Block = new Array(5);
			var GreyBlock = new Image;
			var ArrowOn = new Image;
			var ArrowOff = new Image;
			var Choice;
			var ImageSrc;
			var Arrow;
	
		GreyBlock.src = "/images/GreyBlock.gif";
		ArrowOn.src = "/images/Arrow_On.gif";
		ArrowOff.src = "/images/Arrow_Off.gif";
	
		for(idx=0; idx < 5; idx++)
			{
			Block[idx] = new Image;
			Block[idx].src = "/images/Color" + (idx + 1) + ".gif"
			}
		}

	/*				   */
	/* Begin functions */
	/*				   */
		
	function ChangeBlock(BlockID, Colour)
		{
		if (check == true)
			{
			BlockID = 'Block' + BlockID;
			document[BlockID].src = Block[Colour].src;
			BlockID = BlockID + "a";
			document[BlockID].src = ArrowOn.src;
			}
		}

	function ChangeBlockBack(BlockID)
		{
		if (check == true)
			{
			BlockID = 'Block' + BlockID;
			document[BlockID].src = GreyBlock.src;
			BlockID = BlockID + "a";
			document[BlockID].src = ArrowOff.src;
			}
		}			
