    function initialize() {
      if (GBrowserIsCompatible(longt, lati)) {
        var map = new GMap2(document.getElementById("map_canvas"));
        map.setCenter(new GLatLng(longt1,lati1), 14);
        map.setUIToDefault();
 
        // Create a base icon for all of our markers that specifies the
        // shadow, icon dimensions, etc.
        var baseIcon = new GIcon(G_DEFAULT_ICON);
        baseIcon.shadow = "http://www.google.com/mapfiles/shadow50.png";
        baseIcon.shadowSize = new GSize(37, 34);
		baseIcon.iconAnchor = new GPoint(9, 34);
		baseIcon.infoWindowAnchor = new GPoint(9, 2);
		baseIcon.infoShadowAnchor = new GPoint(18, 25);
		
		var letteredIcon1 = new GIcon(baseIcon);
									  letteredIcon1.image = imgs;
									  markerOptions1 = { icon:letteredIcon1 };var point1 = new GMarker(new GLatLng(longt,lati),markerOptions1);map.addOverlay(point1);GEvent.addListener(point1, "click", function() { point1.openInfoWindowHtml(html1); });}
}
