// **************************************
//
//				File:	global_jscript.js
//
// **************************************


function PreLoadImages()
{
if(document.images)
	{
	Image1= new Image();
	Image1.src = "../Graphics/Misc/bullet_square.gif" ;
	Image2 = new Image();
	Image2.src = "../Graphics/Misc/bullet_square_red.gif";
	}
}

function SwapImage(name, naya)
{
if(document.images)
	{
	document.images[name].src= naya.src;
	}
}

