 //<![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.14438919914252,   8.613595178245932 ), 16);


map.openInfoWindow(new GLatLng(50.14612069707226,8.613986541222815  ),
                   document.createTextNode("Damschkeanger 158"));
      // 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.14612069707226,8.613986541222815 );
          map.addOverlay(new GMarker(point, icon));

      }
    }

    //]]>