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.setMapType(G_PHYSICAL_MAP);
    var geocoder = new GClientGeocoder();
    
    var icon = new GIcon();
    var markerStyle = 'Pin';
    var markerColor = 'Nautica';
    icon.image = '../images/flag_blue.gif';
    icon.shadow = 'http://google.webassist.com/google/markers/pin/shadow.png';
    icon.iconSize = new GSize(16,16);
    icon.shadowSize = new GSize(20,20);
    icon.iconAnchor = new GPoint(17,22);
    icon.infoWindowAnchor = new GPoint(17,0);
    icon.printImage = 'http://google.webassist.com/google/markers/pin/nautica.gif';
    icon.mozPrintImage = '../images/flag_blue.gif';
    icon.printShadow = 'http://google.webassist.com/google/markers/pin/shadow.gif';
    icon.transparent = 'http://google.webassist.com/google/markers/pin/nautica_transparent.png';

    var address_0 = {
      street: '16900 Bagley Rd',
      city: 'Cleveland',
      state: 'Ohio',
      zip: '44130',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Address:</strong><br />16900 Bagley Rd<br />Cleveland, Ohio 44130 <br /><a href="http://maps.google.com/maps?rlz=1C1GGLS_enUS291US304&sourceid=chrome&q=16900%20Bagley%20Road%20Middleburg%20Heights,%20OH&um=1&ie=UTF-8&sa=N&tab=wl">Get Directions</a></span></span>',
      full: '16900 Bagley Rd, Cleveland, Ohio, 44130',
      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(40.907286,-70.600464), 13);
        }
      }
    );

  }
}