mapNormal = new Image();
mapCloseup = new Image();
mapNormal.src = "images/wmap_large_parking.gif";
mapCloseup.src = "";
mapStyle = "start";
isIE = "no";
if ( navigator.appName == "Microsoft Internet Explorer") {isIE = "yes"}

function SwitchMap( )
{
	if ( mapStyle == "normal" || mapStyle == "start" )
	{
		if ( mapStyle == "start" )
		{
			if (isIE == 'yes')
			{
				mapCloseup.src = "images/wmap_parking_ie.gif";
			}
			else
			{
				mapCloseup.src = "images/wmap_parking_ns.gif";
			}
		}

		if (isIE == 'yes')
		{
			document.rmfMap.width = 413;
			document.rmfMap.height = 438;
		}
		document.rmfMap.src = mapCloseup.src;
		mapStyle = "closeup";

	}
	else
	{
		if (isIE == 'yes')
		{
			document.rmfMap.width = 577;
			document.rmfMap.height = 303;
		}
		document.rmfMap.src = mapNormal.src;
		mapStyle = "normal";
	}
}
