    function load() {
	
	if(document.getElementById('map')){
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        map.setCenter(new GLatLng(40.826703,14.202855), 12);
		map.addControl(new GSmallMapControl());
		map.addControl(new GMapTypeControl());
     // Our info window content
		var infoTabs = [ new GInfoWindowTab("Info", "<strong>Grand Hotel Cesare Augusto</strong><br /> Viale Cesare Augusto, 42<br />80125 Napoli") ];
		// 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);
      }
    }
	}
