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 GSmallMapControl());
    map.addControl(new GScaleControl());
    map.addControl(new GMapTypeControl());
    map.addControl(new GOverviewMapControl());
    var geocoder = new GClientGeocoder();
    
    var icon = new GIcon();
    var markerStyle = 'Google Traditional (flat)';
    var markerColor = 'Granite Pine';
    icon.image = 'http://google.webassist.com/google/markers/traditionalflat/granitepine.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/granitepine.gif';
    icon.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/granitepine_mozprint.png';
    icon.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon.transparent = 'http://google.webassist.com/google/markers/traditionalflat/granitepine_transparent.png';

    var address_0 = {
	 street: '8878 Brookside Court',
      city: 'West Chester',
      state: 'OH',
      zip: '45069',
      country: 'USA',
      infowindow: 'default',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Infitech, LLC</strong><br />8878 Brookside Court<br />Suite 101<br />West Chester, OH 45069 USA<br />513.779.5700</span><br /><a href="http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=Infitech+LLC,+8878+Brookside+Court,+West+Chester+Ohio,+45069&sll=39.329685,-84.410232&sspn=0.011154,0.018024&ie=UTF8&z=16&iwloc=A" target="_blank">Launch Full Map for Directions</a>',
      full: '8878 Brookside Court, 45069',
      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(39.414981, -84.572435), 15);
        }
      }
    );

  }
}