function wagt_map_3() {
  if(GBrowserIsCompatible()) {
    if(!document.getElementById('wagt_map_3')) return false;
    var map = new GMap2(document.getElementById('wagt_map_3'));
    map.enableContinuousZoom();
    map.enableDoubleClickZoom();
    map.addControl(new GSmallMapControl());
    map.addControl(new GScaleControl());
    map.addControl(new GMapTypeControl());
    var geocoder = new GClientGeocoder();
    
    var icon = new GIcon();
    var markerStyle = 'Google Traditional (flat)';
    var markerColor = 'Deep Jungle';
    icon.image = 'http://www.whitehousecornmaze.com/images/googlemarker.png';
    icon.shadow = '';
    icon.iconSize = new GSize(55,50);
    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/deepjungle.gif';
    icon.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/deepjungle_mozprint.png';
    icon.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon.transparent = 'http://google.webassist.com/google/markers/traditionalflat/deepjungle_transparent.png';

    var address_0 = {
      street: '11455 Obee Road',
      city: 'Whitehouse',
      state: 'Ohio',
      zip: '43571',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Address:</strong><br />The Corn Maze at The Butterfly House<br />11455 Obee Road<br />Whitehouse, Ohio 43571 USA</span>',
      full: '11535 Obee Road, 43571',
      isdefault: true
    };
    
	var point = new GLatLng(41.538181, -83.816626);
	 map.setCenter(point, 14);
   
         
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_0.infowindowtext);
          });
          map.addOverlay(marker);
          marker.openInfoWindowHtml(address_0.infowindowtext);
   

  }
}