function googlemap_schoenberg() {
  if(GBrowserIsCompatible()) {
    if(!document.getElementById('googlemap_leutasch')) return false;
  
	var map = new GMap2(document.getElementById("googlemap_leutasch")); 
	map.enableContinuousZoom();
    map.enableDoubleClickZoom();
    map.addControl(new GSmallZoomControl());
    map.addControl(new GScaleControl());
    map.addControl(new GMapTypeControl());
    map.addControl(new GOverviewMapControl());
    var geocoder = new GClientGeocoder();
    
   var icon = new GIcon();
    var markerStyle = 'Flag';
    var markerColor = 'Nautica';
    icon.image = 'http://www.bergfrieden.at/leutasch/unterkunft_fahne_blau.png';
    icon.shadow = 'http://www.bergfrieden.at/leutasch/unterkunft_fahne_shadow.png';
    icon.iconSize = new GSize(31,35);
    icon.shadowSize = new GSize(31,35);
    icon.iconAnchor = new GPoint(4,27);
    icon.infoWindowAnchor = new GPoint(8,3);
    icon.printImage = 'http://www.bergfrieden.at/leutasch/unterkunft_fahne_blau.png';
    icon.mozPrintImage = 'http://www.bergfrieden.at/leutasch/unterkunft_fahne_blau.png';
    icon.printShadow = 'http://www.bergfrieden.at/leutasch/unterkunft_mozprint.png';
    icon.transparent = 'http://www.bergfrieden.at/leutasch/unterkunft_transparent.png';

    var address_0 = {
      street: 'Obern 34',
      city: 'Leutasch',
      state: 'Tirol',
      zip: 'A-6105',
      country: 'Austria',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Gästehaus Schönberg</strong><br />Fam. Neurauter<br />Obern 34<br />AT-6105  Leutasch, Tirol  Oesterreich<br /><a href="http://www.members.aon.at/schoenberg/">www.members.aon.at/schoenberg/ </a></span>',
      full: '47.3596922307, 11.1254167556762',
      isdefault: true
    };
    
    geocoder.getLatLng (
      address_0.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
	  map.setMapType(G_HYBRID_MAP);  /*wie wird die Karte angezeigt G_HYBRID_MAP ODER G_SATELLITE_MAP ODER G_NORMAL_MAP */
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_0.infowindowtext);
          });
          map.addOverlay(marker);
          marker.openInfoWindowHtml(address_0.infowindowtext);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

  }
}