function wagt_map_1() {
  if(GBrowserIsCompatible()) {
    if(!document.getElementById('wagt_map_1')) return false;
    var map = new GMap2(document.getElementById('wagt_map_1'));
    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 = 'Nautica';
    icon.image = 'http://google.webassist.com/google/markers/traditionalpillow/nautica.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/nautica.gif';
    icon.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalpillow/nautica_mozprint.png';
    icon.printShadow = 'http://google.webassist.com/google/markers/traditionalpillow/shadow.gif';
    icon.transparent = 'http://google.webassist.com/google/markers/traditionalpillow/nautica_transparent.png';

    var address_0 = {
      street: '3345 Chisholm Trail #103',
      city: 'Boulder',
      state: 'CO',
      zip: '80301',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Residence Address:</strong><br />3345 Chisholm Trail #103<br />Boulder, CO 80301 USA</span>',
      full: '3345 Chisholm Trail #103, Boulder, CO, 80301, USA',
      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(40.017248, -105.252396), 13);
        }
      }
    );

    var address_1 = {
      street: '1750 30th St. #603',
      city: 'Boulder',
      state: 'CO',
      zip: '80301',
      country: 'USA',
      infowindow: 'default',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Business Address:</strong><br />1750 30th St. #603<br />Boulder, CO 80301 USA</span>',
      full: '1750 30th St. #603, Boulder, CO, 80301, USA',
      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(40.017248, -105.252396), 13);
        }
      }
    );

  }
}