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 GSmallMapControl());
    map.addControl(new GMapTypeControl());
    map.addControl(new GOverviewMapControl());
    
    var icon = new GIcon();
    var markerStyle = 'Google Traditional (flat)';
    var markerColor = 'Pacifica';
    icon.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.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/pacifica.gif';
    icon.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';

    var address_0 = {
      street: 'Abejeras 6',
      city: 'Pamplona',
      state: 'Navarra',
      zip: '31007',
      country: 'Spain',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Direcci&oacute;n:</strong><br />Abejeras 6<br />Pamplona, Navarra 31007 Espa&ntilde;a</span>',
      full: 'Abejeras 6, Pamplona, Navarra, 31007, Spain',
      isdefault: true
    };
    

		var point = new GLatLng(42.807586, -1.645386);
		map.setCenter(point, 15);
		var marker = new GMarker(point, icon);
		GEvent.addListener(marker, 'click', function() {
			marker.openInfoWindowHtml(address_0.infowindowtext);
		});
		map.addOverlay(marker);
		marker.openInfoWindowHtml(address_0.infowindowtext);


  }
}

