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 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: '43 Church Road',
      city: 'Hove',
      state: 'East Sussex',
      zip: 'BN3 2BE',
      country: 'UK',
      infowindow: 'default',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Ellman Henderson Ltd</strong><br />43 Church Road<br />Hove, East Sussex - BN3 2BE<br /><a href="http://maps.google.co.uk/maps?f=q&hl=en&geocode=&q=Ellman+Henderson&sll=50.82712,-0.164681&sspn=0.008891,0.027895&ie=UTF8&ll=50.827124,-0.164688&spn=0.009217,0.027895&z=16&iwloc=A" target="blank">Google Map / Directions</a></span>',
      full: '43 Church Road, Hove, East Sussex, BN3 2BE, UK',
      isdefault: true
    };
    
    geocoder.getLatLng (
      address_0.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          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(50.827101, -0.164747), 13);
        }
      }
    );

  }
}