function mapIt(long, lat, zoom)
	{
	d = document.getElementById("theMap");
	d.style.display = "block";
	load(long, lat, zoom);
	}

function load(long, lat, zoom)
	{
	if (GBrowserIsCompatible()) 
		{
		var map = new GMap2(document.getElementById("theMap"));
		var point = new GLatLng(long, lat);
		map.setUIToDefault();

		map.setMapType(G_SATELLITE_MAP);
		map.setCenter(point, zoom);

		// Add icon
	        var blueIcon = new GIcon(G_DEFAULT_ICON);
        	blueIcon.image = "http://gmaps-samples.googlecode.com/svn/trunk/markers/blue/blank.png";
		options = {icon:blueIcon};
		map.addOverlay(new GMarker(point, blueIcon));
		}
	}