function wagt_map_6() {
  if(GBrowserIsCompatible()) {
    if(!document.getElementById('wagt_map_6')) return false;
    var map = new GMap2(document.getElementById('wagt_map_6'));
    map.enableContinuousZoom();
    map.enableDoubleClickZoom();
    map.addControl(new GSmallMapControl());
    var geocoder = new GClientGeocoder();
    
    var icon = new GIcon();
    var markerStyle = 'Push-Pin';
    var markerColor = 'Pacifica';
    icon.image = 'images/google/pacifica.png';
    icon.shadow = 'images/google/shadow.png';
    icon.iconSize = new GSize(40,41);
    icon.shadowSize = new GSize(40,41);
    icon.iconAnchor = new GPoint(7,38);
    icon.infoWindowAnchor = new GPoint(26,4);
    icon.printImage = 'images/google/pacifica.gif';
    icon.mozPrintImage = 'images/google/pacifica_mozprint.png';
    icon.printShadow = 'images/google/shadow.gif';
    icon.transparent = 'images/google/pacifica_transparent.png';

    var address_0 = {
      street: '250 10th St. E',
      city: 'Owen Sound',
      state: 'ON',
      zip: 'N4K 1S4',
      country: 'CA',
      infowindow: 'default',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Address:</strong><br />250 10th St. E<br />Owen Sound, ON N4K 1S4 CA</span>',
      full: '250 10th St. E, Owen Sound, ON, N4K 1S4, CA',
      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);
        }
      }
    );

  }
}
