function wagt_map_1() {
  if(GBrowserIsCompatible()) {
    if(!document.getElementById('wagt_map_1')) return false;
    var map = new GMap2(document.getElementById('wagt_map_1'));
    map.enableContinuousZoom();
    map.enableDoubleClickZoom();
	map.addControl(new GSmallZoomControl3D());
	var geocoder = new GClientGeocoder();
    
    var icon = new GIcon();
    var markerStyle = 'Google Traditional (flat)';
    var markerColor = 'Deep Jungle';
    icon.image = 'http://google.webassist.com/google/markers/traditionalflat/deepjungle.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/deepjungle.gif';
    icon.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/deepjungle_mozprint.png';
    icon.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon.transparent = 'http://google.webassist.com/google/markers/traditionalflat/deepjungle_transparent.png';

    var address_0 = {
      street: 'Calle Borrell 209, Entresuelo D',
      city: 'Barcelona',
      state: 'Barcelona',
      zip: '08025',
      country: 'España',
      infowindow: 'default',
      infowindowtext: '<span style="color: #0083BE;"><h3 style="font: bold 1.3em/1.38em Arial, Helvetica, sans-serif;">NomaDesign</h3><span style="font: normal 1.3em/1.38em Arial, Helvetica, sans-serif;">Calle Borrell 209, Entresuelo D</span><br /><span style="font: normal 1.3em/1.38em Arial, Helvetica, sans-serif;">08025 - Barcelona</span></span>',
      full: 'Calle Borrell 209, Barcelona, Barcelona, 08025, España',
      isdefault: true
    };
    
    geocoder.getLatLng (
      address_0.full,
      function(point) {
        if(point) {
          map.setCenter(point, 12);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_0.infowindowtext);
          });
          map.addOverlay(marker);
          // marker.openInfoWindowHtml(address_0.infowindowtext);
        }
      }
    );

  }
}