function load() {
      if (GBrowserIsCompatible()) 
	  {
        var map = new GMap2(document.getElementById("map"));
		map.addControl(new GSmallMapControl());
		map.addControl(new GMapTypeControl());
        
		map.setCenter(new GLatLng(45.112057812223014, 1.2409615516662598), 13);
		map.openInfoWindow( new GLatLng(45.1122,map.getCenter().lng()), document.createTextNode("Neptunalias Piscines - (SARL Vitrac-Deljarric)"));
		
		// Create our "tiny" marker icon
		var icon = new GIcon();
		icon.image = "http://www.neptunaliaspiscines.com/Include/PRESENT/DESIGN/EtoileIcon.png";
		icon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
		icon.iconSize = new GSize(40, 27);
		icon.shadowSize = new GSize(22, 20);
		icon.iconAnchor = new GPoint(6, 20);
		icon.infoWindowAnchor = new GPoint(5, 1);
		
		var marker = new GMarker(map.getCenter(),icon);
		GEvent.addListener(marker, "click", function() 
		{
			marker.openInfoWindowHtml("<b>Neptunalias Piscines</b> - (SARL Vitrac-Deljarric)<br> La Vergne BP n°3 <br> 24570 Condat Sur Vezere");
		});
		map.addOverlay(marker);
		
		/*GEvent.addListener(map, "moveend", function() 
		{
			  var center = map.getCenter();
			  document.getElementById("message").innerHTML = center.toString();
		});*/

      }
    }