function wagt_map_2() {
  if(GBrowserIsCompatible()) {
    if(!document.getElementById('wagt_map_2')) return false;
    var map = new GMap2(document.getElementById('wagt_map_2'));
    map.enableContinuousZoom();
    map.enableDoubleClickZoom();
    map.addControl(new GSmallMapControl());
    map.addControl(new GMapTypeControl());
    map.addControl(new GOverviewMapControl());
    var geocoder = new GClientGeocoder();
    
    var icon = new GIcon();
    var markerStyle = 'Google Traditional (flat)';
    var markerColor = 'Desert Spice';
    icon.image = 'http://google.webassist.com/google/markers/traditionalflat/desertspice.png';
    icon.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon.iconSize = new GSize(34,35);
    icon.shadowSize = new GSize(34,35);
    icon.iconAnchor = new GPoint(9,23);
    icon.infoWindowAnchor = new GPoint(19,0);
    icon.printImage = 'http://google.webassist.com/google/markers/traditionalflat/desertspice.gif';
    icon.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/desertspice_mozprint.png';
    icon.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon.transparent = 'http://google.webassist.com/google/markers/traditionalflat/desertspice_transparent.png';

    var address_0 = {
      street: 'via Amedeo, 63',
      city: 'Panicarola, Castiglione del Lago',
      state: 'PG',
      zip: '06060',
      country: 'Italia',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 10px Arial, Helvetica, sans-serif; color: #000;"><strong>Agriturismo La Fattoria</strong><br />via Amedeo, 63<br />06060 Panicarola<br />Castiglione del Lago (PG)  Italia</span>',
      full: 'via Amedeo, 63, Panicarola, Castiglione del Lago, PG, 06060, Italia',
      isdefault: true
    };
	
    geocoder.getLatLng (
      address_0.full,
      function(point) {
        if(point) {
          map.setCenter(point, 11);
          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), 11);
        }
      }
    );

  }
}