// JavaScript Document
    //<![CDATA[

    function load() {
      if (GBrowserIsCompatible()) {
			var map = new GMap2(document.getElementById("map2"));
			map.addControl(new GSmallMapControl());
			map.addControl(new GMapTypeControl());
			map.setCenter(new GLatLng(43.58436224366505,7.120462954044342), 13);
			map.openInfoWindowHtml(map.getCenter(),"<b>6 Rue Honore Ferrare</b><br/>06600 Antibes - France<br/>Tel +33 493 95 04 95");

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

      }
    }

    //]]>