  //<![CDATA[


function load(Lat, Lng, Site) {
   var map;
   var point = new GLatLng(Lat, Lng)
   if (GBrowserIsCompatible()) {
      var map = new GMap2(document.getElementById("map"));
      map.addMapType(G_PHYSICAL_MAP);
      map.addControl(new GSmallMapControl());
      map.addControl(new GMapTypeControl(useShortNames=true));
      //map.addControl(new GScaleControl());
      map.enableDoubleClickZoom();
      map.enableContinuousZoom();
      //map.enableScrollWheelZoom();
      map.setCenter(point, 14);
      map.setMapType(G_PHYSICAL_MAP);
      <!-- MapTypes are: G_MAP_TYPE, G_SATELLITE_TYPE, G_HYBRID_TYPE, G_PHYSICAL_MAP
      map.addOverlay(CreateMarker(point, Site));
      map.openInfoWindowHtml(point,"<p><font size=2>" + Site + "</font></p>");
   }
}
function CreateMarker(point, Site) {
   var icon = new GIcon();
   icon.image = "DreamTime2.png";
   icon.shadow = "shadow2.png";   
   icon.iconSize = new GSize(48, 48);
   icon.shadowSize = new GSize(64, 56);
   icon.iconAnchor = new GPoint(36, 48);
   icon.infoWindowAnchor = new GPoint(5, 1);
   var marker = new GMarker(point, icon);
   GEvent.addListener(marker, "click", function() {
      marker.openInfoWindowHtml("<p><font size=2>" + Site + "</font></p>");
   });
   return marker;
}

  //]]>