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 GLargeMapControl());
    map.addControl(new GScaleControl());
    map.addControl(new GMapTypeControl());
    map.addControl(new GOverviewMapControl());
    var geocoder = new GClientGeocoder();
    
    var icon = new GIcon();
    var markerStyle = 'Google Traditional (pillow)';
    var markerColor = 'Moab';
    icon.image = 'http://google.webassist.com/google/markers/traditionalpillow/moab.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/moab.gif';
    icon.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalpillow/moab_mozprint.png';
    icon.printShadow = 'http://google.webassist.com/google/markers/traditionalpillow/shadow.gif';
    icon.transparent = 'http://google.webassist.com/google/markers/traditionalpillow/moab_transparent.png';

    var address_0 = {
      street: '7447 Clearwater Rd',
      city: 'Baxter',
      state: 'mn',
      zip: '56425',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Mill Run Estates</strong><br />Baxter, MN<br />Lot prices range from $39,900 to $42,900.<p /><a href="/images/plats/mill_run_estates.jpg"><img src="/images/plats/mill_run_estates_t.jpg" alt="Baxter MN Real Estate"  border="1"></a></span>',
      full: '7447 Clearwater Rd, Baxter, mn, 56425',
      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: '6th Avenue nw',
      city: 'Rice',
      state: 'MN',
      zip: '56367',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Field of Dreams Plat 2</strong><br />Rice, MN <br />Lot prices range from $37,000 to $42,000<p /><a href="/images/plats/field_of_dreams.jpg"><img src="/images/plats/field_of_dreams_t.jpg" alt="Rice MN Real Estate"  border="1"></a></span>',
      full: '6th Avenue nw, Rice, MN, 56367, USA',
      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: '127th Street SE',
      city: 'Becker',
      state: 'MN',
      zip: '55308',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Aspen Ridge</strong><br />Becker, MN<br />Lot prices range from $75,000 to $85,000<p /><a href="/images/plats/aspen_ridge.jpg"><img src="/images/plats/aspen_ridge_t.jpg" alt="Becker MN Real Estate"  border="1" align="top"></a></span>',
      full: '127th Street SE, Becker, MN, 55308, USA',
      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);
        }
      }
    );

    var address_3 = {
      street: '5800 Rolling Ridge Rd',
      city: 'St Cloud',
      state: 'MN',
      zip: '56303',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Parkwood Heights</strong><br />St Cloud, MN<br />Lot prices range from $65,000 to $79,000.<p /><a href="/images/plats/parkwood_heights.jpg"><img src="/images/plats/parkwood_heights_t.jpg" alt="St Cloud MN Real Estate"  border="1"></a></span>',
      full: '5800 Rolling Ridge Rd, St Cloud, MN, 56303',
      isdefault: true
    };
    
    geocoder.getLatLng (
      address_3.full,
      function(point) {
        if(point) {
          map.setCenter(point, 6);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_3.infowindowtext);
          });
          map.addOverlay(marker);
          marker.openInfoWindowHtml(address_3.infowindowtext);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 6);
        }
      }
    );

  }
}