 //<![CDATA[

    function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        map.addControl(new GSmallMapControl());
map.addControl(new GMapTypeControl());
        map.setCenter(new GLatLng( 50.13194443966909, 8.626034737610389 ), 16);


map.openInfoWindow(new GLatLng( 50.13350698067995,8.626261599935049),
                   document.createTextNode("Kleine Nelkenstrasse 17"));
      // Create our "tiny" marker icon
        var icon = new GIcon();
        icon.image = "http://labs.google.com/ridefinder/images/mm_20_green.png";
        icon.shadow = "http://www.google.com/mapfiles/shadow50.png";
        icon.iconSize = new GSize(12, 40);
        icon.shadowSize = new GSize(22, 40);
        icon.iconAnchor = new GPoint(0, 0);
        icon.infoWindowAnchor = new GPoint(5, 1);

        // Add 10 markers to the map at random locations
        var bounds = map.getBounds();

          var point = new GLatLng( 50.13350698067995,8.626261599935049);
          map.addOverlay(new GMarker(point, icon));

      }
    }

    //]]>
