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());
    map.addControl(new GOverviewMapControl());
    var geocoder = new GClientGeocoder();
    
    var icon = new GIcon();
    var markerStyle = 'Google Traditional (pillow)';
    var markerColor = 'Slate';
    icon.image = 'http://google.webassist.com/google/markers/traditionalpillow/slate.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/slate.gif';
    icon.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalpillow/slate_mozprint.png';
    icon.printShadow = 'http://google.webassist.com/google/markers/traditionalpillow/shadow.gif';
    icon.transparent = 'http://google.webassist.com/google/markers/traditionalpillow/slate_transparent.png';

    var address_0 = {
      street: '721 North Long Street Unit C',
      city: 'Salisbury',
      state: 'North Carolina',
      zip: '28144',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Address:</strong><br />721 North Long Street Unit C<br />Salisbury, NC 28144 USA<br /><strong>Phone Number:</strong><br />704.787.1791<br /><a href=" http://maps.google.com/maps?ie=UTF-8&oe=UTF-8&hl=en&tab=wl&q=">Get Directions</a></span>',
      full: '721 North Long Street Unit C, Salisbury, North Carolina, 28144',
      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 USA<br /><strong>Phone Number:</strong><br />1.888.725.6619<br /><a href=" http://maps.google.com/maps?ie=UTF-8&oe=UTF-8&hl=en&tab=wl&q=">Get Directions</a></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: '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><br />937.383.2243<br /><a href=" http://maps.google.com/maps?ie=UTF-8&oe=UTF-8&hl=en&tab=wl&q=">Get Directions</a></span>',
      full: '114 Newham St, Wilmington, Ohio, 45177',
      isdefault: false
    };
    
    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);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

  }
}