//
     window.onload = showMap;
    function showMap()
{  
      var map = new GMap(document.getElementById("map"));
      map.addControl(new GSmallMapControl());
      map.addControl(new GMapTypeControl());
      map.centerAndZoom(new GPoint(-77.92896,34.23690), 5);
  var marker = new GMarker(new GPoint(-77.92896,34.23690));
  var html = "<STRONG><FONT size='2' face=Arial>Sandra L Miles PA</font> <face=Arial><br></font><FONT face=Arial size=2>1 North 16th Street<BR>Wilmington, NC 28401-4904<BR>(910) 815-0811<BR><A href='http://maps.google.com/maps?f=q&hl=en&q=1+North+16th+Street+Wilmington+NC&ll=34.23690,-77.92896&spn=0.015306,0.033989' target=_blank>Driving Directions</a>";
  GEvent.addListener(marker, 'click', function() {
 marker.openInfoWindowHtml(html);
  });
    map.addOverlay(marker);

 }
    // 