		//<![CDATA[
		
		if (GBrowserIsCompatible()) { 
	
	      // Create Icon
		  var baseIcon = new GIcon();
			  baseIcon.iconSize=new GSize(10,10);
			  // baseIcon.shadowSize=new GSize(56,32);
			  baseIcon.iconAnchor=new GPoint(5,5);
			  baseIcon.infoWindowAnchor=new GPoint(0,10);
			  
		  var place = new GIcon(baseIcon, "http://www.peace-on-earth.org/common/rdot.png", null, null);
	
		  function createMarker(point,html,icon) {
			var marker = new GMarker(point,icon);
			GEvent.addListener(marker, "mouseover", function() {
			  marker.openInfoWindowHtml(html);
			});
			return marker;
		  }
	
		  // Display the map, with some controls and set the initial location 
		  var map = new GMap2(document.getElementById("et"));
		  map.addControl(new GLargeMapControl());
		  map.addControl(new GMapTypeControl());
		  map.setCenter(new GLatLng(8.8, 39.5),5);
		  map.setMapType(G_HYBRID_MAP); // or G_SATELLITE_MAP

		  //var point = new GLatLng(43.94253,5.209236);
		  //var marker = createMarker(point,'<span class="google_map"><img width="200" height="146" src="fr44s.jpg"><br><a href="fr44a.html">Abbeye de S&eacute;nanque</a></span>', place);
		  //map.addOverlay(marker);
		  
		}
		
		// display a warning if the browser was not compatible
		else {
		  alert("Sorry, the Google Maps API is not compatible with this browser");
		}
		//]]>
