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(48.655537,9.195875), 9);
    
  // 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>ORCON GmbH</b><br/>Uhlbergstr. 13-15<br/>70794 Filderstadt");
  });
  map.addOverlay(marker);
  marker.openInfoWindowHtml("<b>ORCON GmbH</b><br/>Uhlbergstr. 13-15<br/>70794 Filderstadt");
      
  }
}


//http://maps.google.de/maps?f=q&source=s_q&hl=de&geocode=&q=uhlbergstr.+13-15+70794+Filderstadt&sll=48.655537,9.195875&sspn=0.006733,0.01929&g=uhlbergstr.+13-15+70794+Filderstadt&ie=UTF8&hq=&hnear=Uhlbergstra%C3%9Fe+13-15,+Plattenhardt+70794+Filderstadt,+Esslingen,+Baden-W%C3%BCrttemberg&ll=48.655537,9.195875&spn=0.000842,0.002411&z=19

