function wagt_map_2() {
  if(GBrowserIsCompatible()) {
    if(!document.getElementById('wagt_map_2')) return false;
    var map = new GMap2(document.getElementById('wagt_map_2'));
    map.enableContinuousZoom();
    map.enableDoubleClickZoom();
    map.addControl(new GSmallMapControl());
    map.addControl(new GMapTypeControl());
    var geocoder = new GClientGeocoder();
    
    var icon = new GIcon();
    var markerStyle = 'Google Traditional (pillow)';
    var markerColor = 'Pacifica';
    icon.image = 'http://google.webassist.com/google/markers/traditionalpillow/pacifica.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(9,23);
    icon.infoWindowAnchor = new GPoint(19,0);
    icon.printImage = 'http://google.webassist.com/google/markers/traditionalpillow/pacifica.gif';
    icon.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalpillow/pacifica_mozprint.png';
    icon.printShadow = 'http://google.webassist.com/google/markers/traditionalpillow/shadow.gif';
    icon.transparent = 'http://google.webassist.com/google/markers/traditionalpillow/pacifica_transparent.png';

    var address_0 = {
      street: 'Ford Street',
      city: 'Derby',
      state: 'DE1 1EE',
      zip: 'DE1 1EE',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><img src="./images/logo.gif" alt="Justin Smith Architects" width="200" height="40" border="0"<br />Ford Street<br />Derby<br />DE1 1EE<br /><strong>Tel: 01332 258350</strong><br /><a href="http://maps.google.com/maps/ms?ie=UTF&msa=0&msid=117324936090993203689.000440019a4408aad6ee2" target="_blank">Click here to get directions!<\/a></span>',
      full: 'Ford Street, Derby, DE1 1EE',
      isdefault: true
    };
    
    geocoder.getLatLng (
      address_0.full,
      function(point) {
        if(point) {
          map.setCenter(point, 14);
          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(37.4419, -122.1419), 13);
        }
      }
    );

  }
}