function wagt_map_1() {
  if(GBrowserIsCompatible()) {
    if(!document.getElementById('wagt_map_1')) return false;
    var map = new GMap2(document.getElementById('wagt_map_1'));
    map.enableContinuousZoom();
    map.enableDoubleClickZoom();
    map.addControl(new GLargeMapControl());
    map.addControl(new GMapTypeControl());
    var geocoder = new GClientGeocoder();
    
	var icon = new GIcon();
	icon.image = "images/fish_marker.png";
	icon.shadow = "images/fish_shadow.png";
	icon.iconSize = new GSize(88, 76);
	icon.shadowSize = new GSize(88, 76);
	icon.iconAnchor = new GPoint(37, 59);
	icon.infoWindowAnchor = new GPoint(31, 8);

    //var icon = new GIcon();
    //var markerStyle = 'Push-Pin';
   // var markerColor = 'Pacifica';
    //icon.image = 'C:\Documents and Settings\Owner.MPIETRYSZYN\Desktop\MP Solutions\FishNLodge\images\fish_marker.png';
    //icon.shadow = 'C:\Documents and Settings\Owner.MPIETRYSZYN\Desktop\MP Solutions\FishNLodge\images\fish_shadow.png';
    //icon.image = 'http://google.webassist.com/google/markers/pushpin/pacifica.png';
    //icon.shadow = 'http://google.webassist.com/google/markers/pushpin/shadow.png';
    //icon.iconSize = new GSize(88,76);
    //icon.shadowSize = new GSize(88,41);
    //icon.iconAnchor = new GPoint(7,38);
    //icon.infoWindowAnchor = new GPoint(26,4);
    //icon.printImage = 'http://google.webassist.com/google/markers/pushpin/pacifica.gif';
    //icon.mozPrintImage = 'http://google.webassist.com/google/markers/pushpin/pacifica_mozprint.png';
    //icon.printShadow = 'http://google.webassist.com/google/markers/pushpin/shadow.gif';
   // icon.transparent = 'http://google.webassist.com/google/markers/pushpin/pacifica_transparent.png';

    var address_0 = {
      //city: 'Owen Sound',
      //state: 'Ontario',
     // zip: 'N4K 5N4',
     // country: 'Canada',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 14px Verdana, Arial, Helvetica, sans-serif; color: #000;">Fish \'N\' Lodge</span><br />Charters and Accommodations<br />RR#2 Balmy Beach, Ontario<br />N4K 5N4<br />(519) 371-6442</span>',
     // full: 'Owen Sound, Ontario, N4K 5N4, Canada',
	 full: '44.618749, -80.944101',
      isdefault: true
    };
    
    geocoder.getLatLng (
      address_0.full,
      function(point) {
        if(point) {
          map.setCenter(point, 9);
          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(44.618749, -80.944101), 9);
		map.addOverlay(new GMarker(new GLatLng(44.618749, -80.944101)));
        }
      }
    );

  }
}