
    //<![CDATA[

function load() {
      if (GBrowserIsCompatible()) {
var map = new GMap2(document.getElementById("map"));
map.addControl(new GSmallMapControl());
map.addControl(new GMapTypeControl());
map.setCenter(new GLatLng(44.2137, 3.8113), 9);

// Our info window content
var infoTabs = [
  new GInfoWindowTab("M.P.Vincent", "M.P.Vincent<br>La Vignasse<br>48 370 St Germain de Calberte")
];

// 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);
      }
    }

var map = new GMap2(document.getElementById("map"));
map.addControl(new GSmallMapControl());
map.addControl(new GMapTypeControl());
map.setCenter(new GLatLng(44.2137, 3.8113), 9);

// Our info window content
var infoTabs = [
  new GInfoWindowTab("M.P.Vincent", "M.P.Vincent<br>La Vignasse<br>48 370 St Germain de Calberte")
];

// 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);

    //]]>


