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 (flat)';
    var markerColor = 'Nautica';
    icon.image = 'http://google.webassist.com/google/markers/traditionalflat/nautica.png';
    icon.shadow = 'http://google.webassist.com/google/markers/traditionalflat/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/traditionalflat/nautica.gif';
    icon.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/nautica_mozprint.png';
    icon.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon.transparent = 'http://google.webassist.com/google/markers/traditionalflat/nautica_transparent.png';

    var address_0 = {
      street: '2020 Fleischmann Rd',
      city: 'Tallahassee',
      state: 'FL',
      zip: '32308',
      country: 'USA',
      infowindow: 'default',
      infowindowtext: '<div align="left"><span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong><div class="img-shadow left"><img src="site_images/building/frontdoor_xsm.jpg" width="100" height="64" alt="Eye Associates"></div>Address:</strong><br />Eye Associates of Tallahassee<br />2020 Fleischmann Road.<br />Tallahassee, FL 32308 USA</span><br/><br/><h3>Directions</h3><div><form action="http://maps.google.com/maps" target="_blank" method="get"><input type="hidden"  name="daddr" id="daddr" value="2020 Fleischmann Road, Tallahassee, FL 32308 " /><p><label for="saddr">From </label><input type="text" name="saddr" id="saddr" value="" /> <input type="submit" value="Go" /></p></form></div></div>',
      full: '2020 Fleischmann Rd, Tallahassee, FL 32308, USA',
      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);
        }
      }
    );

  }
}