function initialize() {      if (GBrowserIsCompatible()) {        var map = new GMap2(document.getElementById("map_canvas"));        map.setCenter(new GLatLng(39.029852466679316, -77.12127685546875), 13); 
var map = new GMap2(document.getElementById("map_canvas"));  map.setMapType(G_NORMAL_MAP); map.setCenter(new GLatLng(39.029852466679316, -77.12127685546875), 9);
map.addControl(new GOverviewMapControl());
map.addControl(new GSmallMapControl());
map.addControl(new GMapTypeControl());
map.addControl(new GScaleControl());
var marker = new GMarker(new GLatLng(39.029852466679316,-77.12127685546875));map.addOverlay(marker);
var html="<table width='350'><tr><td><img src='images/logo1.gif'" +
         "width='112' height='85' align='left' hspace='4'/></td>" +
         "<td><h4>All-Pro Area Coverage</h4>" +
         "If you need a <i>quality</i> interior painting service at competitive rates and you're between Germantown, Bethesda, Baltimore, and Annapolis please call me&#33;<br />240-593-0677</td></tr></table>";
marker.openInfoWindowHtml(html);
     }    }

