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 (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: '114 Newham St',
      city: 'Wilmington',
      state: 'Ohio',
      zip: '45177',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Address:</strong><br />114 Newham St<br />Wilmington, OH 45177 USA<br /><strong>Phone Number:</strong> 937.383.2243<br /><strong>Fax Number:</strong> 937.283.2207<br /><a href="http://maps.google.com/maps?f=q&hl=en&q=114+Newham+St,+Wilmington,+OH&sll=40.063523,-82.350404&sspn=0.008113,0.021501&layer=&ie=UTF8&z=16&ll=39.449168,-83.817208&spn=0.008185,0.021501&om=1&iwloc=addr">Get Directions</a></span>',
      full: '114 Newham St, Wilmington, Ohio, 45177',
      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: '6767 County Road 624',
      city: 'Millersburg',
      state: 'Ohio',
      zip: '44654-8840',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Address:</strong><br />6767 County Road 624<br />Millersburg, Ohio 44654-8840 <br /><strong>Phone Number:</strong><br />1.800.524.7436</span>',
      full: '6767 County Road 624, Millersburg, Ohio, 44654-8840',
      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: '25 Swans Road NE',
      city: 'Newark',
      state: 'Ohio',
      zip: '43055',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Address:</strong><br />25 Swans Road NE<br />Newark, OH 43055 USA<br /><strong>Phone Number:</strong> 1.800.860.3045<br /><strong>Fax Number:</strong> 740.349.5789<br /><a href="http://maps.google.com/maps?f=q&hl=en&q=25+Swans+Road+NE,+Newark,+Oh&sll=40.553282,-81.868916&sspn=0.008054,0.021501&layer=&ie=UTF8&z=16&ll=40.063523,-82.350404&spn=0.008113,0.021501&om=1&iwloc=addr">Get Directions</a></span>',
      full: '25 Swans Road NE, Newark, Ohio, 43055',
      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);
        }
      }
    );

  }
}