<!--

	function Reflow()
	{
		if ((usragnt=="IE6") || (usragnt=="IE7"))
		{ var winy=document.documentElement.clientHeight;
		}
		else
		{ var winy=window.innerHeight;
		}
		tmp=winy-200;
		document.getElementById('map').style.height=tmp+'px';
	}
	
	function load () 
	{
		if (GBrowserIsCompatible()) 
		{
			var LatLng = new GLatLng(-33.0055,27.910895);
			var map = new GMap2(document.getElementById("map"));
			var marker = new GIcon();
			marker.image = "/ContactUs/gmapicon.png";
			marker.iconSize = new GSize(25,25);
			marker.iconAnchor = new GPoint(1,25);
			map.addControl( new GSmallMapControl() );
			map.addControl( new GMapTypeControl()) ;
			map.addControl( new GOverviewMapControl(new GSize(100,80)) );
			map.setCenter (LatLng,17,G_HYBRID_MAP);
			map.addOverlay (new GMarker(LatLng,marker));
		} 
		else 
		{
			alert("Sorry, your browser cannot handle the true power of Google Maps");
		}
	}

	function init()
	{
	        usragnt="NA";
		if (navigator.userAgent.indexOf("MSIE 7") != -1) { usragnt="IE7"; }
	        if (navigator.userAgent.indexOf("MSIE 6") != -1) { usragnt="IE6"; }
	        if (navigator.userAgent.indexOf("Firefox") != -1)  { usragnt="FF";  }
	        if (navigator.userAgent.indexOf("Opera") != -1)  { usragnt="O";  }
	        if (navigator.userAgent.indexOf("Safari") != -1) { usragnt="S"; }
        	if (navigator.userAgent.indexOf("Konqueror") != -1) { usragnt="K";}
	        Reflow();
        	window.onresize=Reflow;
		load();
	}

	window.onload = init;
	window.onunload = GUnload;

-->
