//<![CDATA[

    function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        map.addControl(new GLargeMapControl());
        map.addControl(new GMapTypeControl());
				var vertical = 51.352000
				var horizontal = 7.439123
				var verticalCenter = vertical+0.0000
				var horizontalCenter = horizontal+0.0010
				
        map.setCenter(new GLatLng(verticalCenter, horizontalCenter), 6);
        // Marker
        var baseIcon = new GIcon();
				baseIcon.image = "images/google/google_marker_schmitz.png"; 
				baseIcon.iconSize = new GSize(116, 80);
				baseIcon.iconAnchor = new GPoint(0, 80);
				baseIcon.shadow = "images/google/google_schatten_schmitz.png";
				baseIcon.shadowSize = new GSize(116, 80);
				baseIcon.shadowAnchor = new GPoint(0, 80);
				baseIcon.infoWindowAnchor = new GPoint(9, 2);
				baseIcon.infoShadowAnchor = new GPoint(18, 25);
				
				
				// Positionen
				var point = new GLatLng(vertical, horizontal);			
  			var marker = new GMarker(point, baseIcon);

			
				// Fenster
  			GEvent.addListener(marker, "click", function() {
			    marker.openInfoWindowHtml("<span style='font-family:sans-serif; font-size:11px;'><b>Robert Schmitz Spedition GmbH</b><br>Spiekerstra&szlig;e 7<br>58135 Hagen<br>Germany</span>");  
  			});
  			
				
				// Marker erstellen
  			map.addOverlay(marker);
        }
      }


    //]]>
