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 GSmallZoomControl());

    var geocoder = new GClientGeocoder();
    
    var icon = new GIcon();
    var markerStyle = 'Google Traditional (pillow)';
    var markerColor = 'Poppy';
    icon.image = 'http://google.webassist.com/google/markers/traditionalpillow/poppy.png';
    icon.shadow = 'http://google.webassist.com/google/markers/traditionalpillow/shadow.png';
    icon.iconSize = new GSize(34,35);
    icon.shadowSize = new GSize(34,35);
    icon.iconAnchor = new GPoint(125,125);
    icon.infoWindowAnchor = new GPoint(0,0);
    icon.printImage = 'http://google.webassist.com/google/markers/traditionalpillow/poppy.gif';
    icon.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalpillow/poppy_mozprint.png';
    icon.printShadow = 'http://google.webassist.com/google/markers/traditionalpillow/shadow.gif';
    icon.transparent = 'http://google.webassist.com/google/markers/traditionalpillow/poppy_transparent.png';

    var address_0 = {
      street: '2 - 8 Commercial Court',
      city: 'Belfast',
      state: 'Northern Ireland',
      zip: 'BT1 2NB',
      country: 'United Kingdom',
      infowindow: 'default',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Address:</strong><br />2 - 8 Commercial Court<br />Belfast, Northern Ireland BT1 2NB United Kingdom</span>',
      full: '2 - 8 Commercial Court, Belfast, Northern Ireland, BT1 2NB, United Kingdom',
      isdefault: true
    };
    
    geocoder.getLatLng (
      address_0.full,
      function(point) {
        if(point) {
          map.setCenter(point, 16);
          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(54.602021, -5.927467), 16);
        }
      }
    );

  }
}


