function load() {
  if (GBrowserIsCompatible()) {
  var map = new GMap2(document.getElementById("map"));
  
  map.enableScrollWheelZoom();
  map.addControl(new GLargeMapControl());
  map.addControl(new GMapTypeControl());
  map.setCenter(new GLatLng(46.391046,6.933746), 15);
    
  // 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.openInfoWindowHtml("<b>Moretti Cars</b><br/>Rte de Chavalon<br/>Zone Industrielle C77<br/>CH-1844 Villeneuve (VD)");
  });
  map.addOverlay(marker);
  marker.openInfoWindowHtml("<b>Moretti Cars</b><br/>Rte de Chavalon<br/>Zone Industrielle C77<br/>CH-1844 Villeneuve (VD)");
      
  }
}
