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());
    var geocoder = new GClientGeocoder();
    
    var icon = new GIcon();
    var markerStyle = 'Push-Pin';
    var markerColor = 'Desert Spice';
    icon.image = 'http://google.webassist.com/google/markers/pushpin/desertspice.png';
    icon.shadow = 'http://google.webassist.com/google/markers/pushpin/shadow.png';
    icon.iconSize = new GSize(40,41);
    icon.shadowSize = new GSize(40,41);
    icon.iconAnchor = new GPoint(7,38);
    icon.infoWindowAnchor = new GPoint(26,4);
    icon.printImage = 'http://google.webassist.com/google/markers/pushpin/desertspice.gif';
    icon.mozPrintImage = 'http://google.webassist.com/google/markers/pushpin/desertspice_mozprint.png';
    icon.printShadow = 'http://google.webassist.com/google/markers/pushpin/shadow.gif';
    icon.transparent = 'http://google.webassist.com/google/markers/pushpin/desertspice_transparent.png';

    var address_0 = {
      street: '2820 Mt Rushmore Road',
      city: 'Rapid City',
      state: 'South Dakota',
      zip: '57701',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<img src="images/universal/rcmc_small.gif" width="100" height="55" align="left"><span style="font: 10px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>The Skin Institute</strong><br />2820 Mt Rushmore Road<br />Rapid City, South Dakota 57701 <br />Located on the 2nd Floor <br />of the Rapid City Medical Center</span>',
      full: '2820 Mt Rushmore Road, Rapid City, South Dakota, 57701',
      isdefault: true
    };
    
    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);
          marker.openInfoWindowHtml(address_0.infowindowtext);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

  }
}