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());
    var geocoder = new GClientGeocoder();
    var fromAddress = {
      enabled: false,
      street: '',
      city: '',
      state: '',
      zip: '',
      country: '',
       full: ''
     };

     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.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: '11 Leinster Mews',
        city: 'London',
        state: '',
        zip: 'W2 3EY',
        country: 'England',
        infowindow: 'default',
        infowindowtext: '',
        full: '51.511874, -0.181901',
        isdefault: true,
        addressType: 'coordinates',
        loop: '',
        latitude: '51.511874',
        longitude: '-0.181901',
        markerStyle: 'Google Traditional (flat)',
        markerColor: 'Pacifica'
      };
     geocoder.getLatLng (
        address_0.full,
        function(point) {
          if(point) {
            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);
          }
          else {
            map.setCenter(new GLatLng(51.511874, -0.181901), 10);
          }
        }
      );

    }
  }
