 //<![CDATA[
// Content Google Client Functionality
function load() {
  if (GBrowserIsCompatible()) {
	var map = new GMap2(document.getElementById("map_canvas"));
	map.addControl(new GSmallMapControl());
	map.addControl(new GMapTypeControl());
	map.setCenter(new GLatLng(gLat, gLng), gZm);
    
      var arrowIcon = new GIcon();
      arrowIcon.image = 'images/mappointer.png';
      arrowIcon.iconSize = new GSize(21,21);
      arrowIcon.iconAnchor = new GPoint(11,30);
      arrowIcon.infoWindowAnchor = new GPoint(11,0);
      arrowIcon.printImage = 'images/mappointer.gif';
      arrowIcon.mozPrintImage = 'images/mappointer.gif';
      arrowIcon.printShadow = 'images/mappointer.gif';
      arrowIcon.transparent = 'images/mappointer.gif';
	  
	var markerOptions = {icon:arrowIcon, draggable: false, clickable: false};
	var marker = new GMarker(arrowPoint,markerOptions );
	
	map.addOverlay(marker);
	
	
}
    
    // display a warning if the browser was not compatible
    else {
      alert("Sorry, the Google Maps API is not compatible with this browser");
    }
}


//]]>