function createMap(ghtmlMessage,glat,glong,gzoom){
			//create the icon (replaces the standard google balloon)
			var icon = new GIcon();
			icon.image = "/design/images/map_arrow.gif";
			
			icon.iconSize = new GSize(32, 45);
			icon.shadowSize = new GSize(22, 20);
			icon.iconAnchor = new GPoint(16, 32);
			icon.infoWindowAnchor = new GPoint(16, 10);
		  
			//creates a marker at the given point, displaying the text on click
			function createMarker(point, text) {
				  var marker = new GMarker(point,icon);
				  GEvent.addListener(marker, "click", function() {
					marker.openInfoWindowHtml(text);
				});
			  return marker;
			}
		  
		  	
			var map = new GMap2(document.getElementById("map"));
			
			//add the pan & zoom control to the map
			map.addControl(new GLargeMapControl());
				
			var point = new GLatLng(glat,glong);
			map.setCenter(point, gzoom);
			var mark = createMarker(point,ghtmlMessage);
			map.addOverlay(mark);
			mark.openInfoWindowHtml(ghtmlMessage);
	};
	
function printOnLoad()
{
	load();
	window.print();
};