   //<![CDATA[

    if (GBrowserIsCompatible()) {

      function createMarker(point,html) {
        var marker = new GMarker(point);
        GEvent.addListener(marker, "click", function() {
          marker.openInfoWindowHtml(html);
        });
        return marker;
      }

      var map = new GMap2(document.getElementById("map"));
      map.addControl(new GLargeMapControl());
      map.addControl(new GMapTypeControl());
      map.setCenter(new GLatLng(50.114428,8.674682), 15);
    
      var point = new GLatLng(50.114428,8.674682);
      var marker = createMarker(point,'<strong>Elena Pilates</strong><br>Große Bockenheimer Straße 29<br>Fressgasse, Höhe "Nordsee"<br>Telefon (0171) 31 49 667')
      map.addOverlay(marker);

    }

    
    else {
      alert("Sorry, the Google Maps API is not compatible with this browser");
    }

    //]]>
