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 GMapTypeControl());
    var geocoder = new GClientGeocoder();
    
    var icon = new GIcon();
    var markerStyle = 'Google Traditional (flat)';
    var markerColor = 'Pacifica';
    icon.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.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/pacifica.gif';
    icon.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';

    var address_0 = {
      street: '1371 Hanson Avenue',
      city: 'Norfolk',
      state: 'VA',
      zip: '23610',
      country: 'USA',
      infowindow: 'default',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Address:</strong><br />1371 Hanson Avenue<br />Norfolk, VA 23610 USA</span><br /><form method=\GET\ target=\_blank\ action=\"http://maps.google.com/maps\"><span style=\"font:Arial, font-size: 11pt; color: #000000;\">Need directions?<br>Enter your departing address below.</span><BR><input type=text name=saddr size=40 style=\"font-size: 10pt\"><br /><input type=hidden name=daddr value=\"1371 Hanson Avenue, norfolk, va, 23510\"<span style=\"color:#888; font-size:10pt;\">ex. 810 Union Street, Norfolk, VA 23510</span><br><br><input type=submit value=\"Get Directions!\" style=\"padding: 0px\"><input type=hidden name=hl value=en></form></span>',
      full: '1371 Hanson Avenue, Norfolk, VA, 23610, USA',
      isdefault: true
    };
    
    geocoder.getLatLng (
      address_0.full,
      function(point) {
        if(point) {
          map.setCenter(point, 15);
          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), 15);
        }
      }
    );

  }
}