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(47.847802,12.113422), 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>Quest Familie Werndl GmbH</b><br/>Kunstmühlstr. 12 A<br/>83026 Rosenheim");
  });
  map.addOverlay(marker);
  marker.openInfoWindowHtml("<b>Quest Familie Werndl GmbH</b><br/>Kunstmühlstr. 12 A<br/>83026 Rosenheim");
      
  }
}
