function wagt_map_3() {
  if(GBrowserIsCompatible()) {
    if(!document.getElementById('wagt_map_3')) return false;
    var map = new GMap2(document.getElementById('wagt_map_3'));
    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 = '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: 'Victoria Street',
      city: 'Liverpool',
      state: 'Merseyside',
      zip: 'L1 6DG',
      country: 'England',
      infowindow: 'custom',
      infowindowtext: '<b>Abbey Apartments</b><a href="ABBY_1BED.HTML"><img src="siteimages/Apartment_1Thumbs/Abby_front_thumb.jpg" width="78" height="58" style="float: left; padding=4px; border; 0"/></a><br />Abbey - 1 bedroom <br/>The Old Haymarket<br/>located in the centre of Liverpool<br/>Click on the Image for details ',
      full: 'Victoria Street, Liverpool, Merseyside, L1 6DG, England',
      isdefault: false
    };
    
    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);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_1 = {
      street: '<b>Dakota Apartments</b>',
      city: 'Liverpool',
      state: 'Merseyside',
      zip: 'L1 5BS',
      country: 'England',
      infowindow: 'custom',
      infowindowtext: '<strong>Dakota Apartments</strong><a href="Dakota_apt_1.HTML"><img src="siteimages/Apartment_1Thumbs/Dakota_1.jpg" width="78" height="58" style="float: left; padding=4px; border; 0"/></a><br /><br />In the Rope Walks Area<br/>Liverpool City<br/>Click on the image for details',
      full: 'Henry Street, Liverpool, Merseyside, L1 5BS, England',
      isdefault: true
    };
    
    geocoder.getLatLng (
      address_1.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_1.infowindowtext);
          });
          map.addOverlay(marker);
          marker.openInfoWindowHtml(address_1.infowindowtext);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

  }
}