
    //<![CDATA[

    function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        map.setCenter(new GLatLng(30.52981,-87.199817), 13);
		 var map = new GMap2(document.getElementById("map"));
map.addControl(new GSmallMapControl());
map.addControl(new GMapTypeControl());
map.setCenter(new GLatLng(30.52981,-87.199817), 13);

// Our tab info window content
var infoTabs = [
  new GInfoWindowTab("Tab #1", "<table><tr><td><img src=images/icon_gmap.png width=115 height=52></td><td>3255 Potter Street<br>Pensacola, FL 32514-7044</td></tr></table>")
];

// Place a marker in the center of the map and open the info window
// automatically
var marker = new GMarker(map.getCenter());
GEvent.addListener(marker, "click", function() {
  marker.openInfoWindowTabsHtml(infoTabs);
});
map.addOverlay(marker);
marker.openInfoWindowTabsHtml(infoTabs);
      }
    }

    //]]>
 
