function ShowSelected(hliteImage)
{
	if (hliteImage.length > 0)
	{
		document.worldimage.src = hliteImage;
	}
	else
	{
		var yourQS = location.search;
		yourQS = location.search.substring(1);

		var pairs = yourQS.split("&");
		var tmpAry;
		var strImage;

		for (var i=0; i<pairs.length; i++)
		{
			tmpAry = pairs[i].split("=");
			if (tmpAry[0] == "region")
			{
				strImage = "/Images/Directory/WorldMap" + tmpAry[1] + ".jpg";
				document.worldimage.src = strImage;
			}
		}
	}
}

function SwapIn(imgNum)
{
	var ImgArray = new Array(5);

	ImgArray[0] = "/Images/directory/WorldMAPAF.jpg";
	ImgArray[1] = "/Images/directory/WorldMapAS.jpg";
	ImgArray[2] = "/Images/directory/WorldMapAU.jpg";
	ImgArray[3] = "/Images/directory/WorldMapEU.jpg";
	ImgArray[4] = "/Images/directory/WorldMapMX.jpg";
	ImgArray[5] = "/Images/directory/WorldMapNA.jpg";
	ImgArray[6] = "/Images/directory/WorldMapSA.jpg";

	document.worldimage.src = ImgArray[imgNum];
}

function SwapOut()
{
	document.worldimage.src = "/Images/Directory/WorldMap.jpg";
}
