function wagt_map_4() {
  if(GBrowserIsCompatible()) {
    if(!document.getElementById('wagt_map_4')) return false;
    var map = new GMap2(document.getElementById('wagt_map_4'));
    map.enableContinuousZoom();
    map.enableDoubleClickZoom();
    map.addControl(new GSmallMapControl());
    map.addControl(new GOverviewMapControl());
    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: 'Hawthorne Drive',
      city: 'Frankton',
      state: 'Otago',
      zip: '9300',
      country: 'New Zealand',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Remarkables Park Medical Centre:</strong><br />Level 2, 12 Remarkables Park Shopping Centre,<br /> Hawthorne Drive, Frankton, <br />Queenstown, Otago 9300 New Zealand</span>',
      full: 'Hawthorne Drive, Frankton, Otago, 9300, New Zealand',
      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: 'Berkshire Street',
      city: 'Arrowtown',
      state: 'Otago',
      zip: '9302',
      country: 'New Zealand',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Arrowtown Medical Centre:</strong><br /> Berkshire Street<br />Arrowtown, Otago 9302 New Zealand</span>',
      full: 'Berkshire Street, Arrowtown, Otago, 9302, New Zealand',
      isdefault: false
    };
    
    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);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_2 = {
      street: '9 Isle Street',
      city: 'Queenstown',
      state: 'Otago',
      zip: '9300',
      country: 'New Zealand',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Queenstown Medical Centre:</strong><br />9 Isle Street<br />Queenstown, Otago 9300 New Zealand</span>',
      full: '9 Isle Street, Queenstown, Otago, 9300, New Zealand',
      isdefault: true
    };
    
    geocoder.getLatLng (
      address_2.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_2.infowindowtext);
          });
          map.addOverlay(marker);
          marker.openInfoWindowHtml(address_2.infowindowtext);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

  }
}