function WAMapRef(mapObj)  {
  this.obj = mapObj;
  this.directions = false;
  this.icons = [];
  this.markers = [];
  this.addresses = [];
  this.points = [];
  this.getPointByAddress = getPointByAddressFunc;
  return this;
}

function waitForGeo()  {
  var startDate = new Date();
  var endDate = new Date();
  while ((endDate-startDate) < 200)  {
    endDate = new Date();
  }
}

function WAMapPoint(theMarker, theAddress, theIcon)  {
  this.icon = theIcon;
  this.marker = theMarker;
  this.address = theAddress;
  return this;
}

function getPointByAddressFunc(value,attname)  {
  if (!attname) attname = "street";
  for (var x=0; x < this.addresses.length; x++) {
    if (eval("this.addresses[x]."+attname) == value)  {
      return WAMapPoint(this.markers[x],this.addresses[x],this.icons[x]);
    }
  }
  return false;
}


function wagmp_map_4() {
  if(GBrowserIsCompatible()) {
    if(!document.getElementById('wagmp_map_4')) return false;
    var map = new GMap2(document.getElementById('wagmp_map_4'));
    wagmp_map_4_obj = new WAMapRef(map);
    map.enableContinuousZoom();
    map.enableDoubleClickZoom();
    map.addControl(new GLargeMapControl());
    map.addControl(new GScaleControl());
    map.addControl(new GMapTypeControl());
    map.addControl(new GOverviewMapControl());
    var geocoder = new GClientGeocoder();
    
    var fromAddress = {
      enabled: false,
      street: '',
      city: '',
      state: '',
      zip: '',
      country: '',
      full: ''
    };

    var icon_0 = new GIcon();
    icon_0.image = 'http://google.webassist.com/google/markers/star/poppy.png';
    icon_0.shadow = 'http://google.webassist.com/google/markers/star/shadow.png';
    icon_0.iconSize = new GSize(29,39);
    icon_0.shadowSize = new GSize(29,39);
    icon_0.iconAnchor = new GPoint(15,15);
    icon_0.infoWindowAnchor = new GPoint(19,7);
    icon_0.printImage = 'http://google.webassist.com/google/markers/star/poppy.gif';
    icon_0.mozPrintImage = 'http://google.webassist.com/google/markers/star/poppy_mozprint.png';
    icon_0.printShadow = 'http://google.webassist.com/google/markers/star/shadow.gif';
    icon_0.transparent = 'http://google.webassist.com/google/markers/star/poppy_transparent.png';
    
    var address_0 = {
      street: '',
      city: '',
      state: '',
      zip: '',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;"><strong>Dawes Glacier</strong><br />We will linger at the face of the glacier for awhile,<br /> and witness the calving and booming of the icebergs.<br /> We\'ll also paddle through iceberg-laden waters, and<br /> we’ll be amused by the antics of the many seals<br /> hauled out for a rest on icebergs. We watch huge<br /> icebergs calving off the face of the Dawes. W</span>',
      full: '57.502406,-132.834147',
      isdefault: false,
      addressType: 'coordinates',
      loop: '',
      latitude: '57.502406',
      longitude: '-132.834147',
      markerStyle: 'Star',
      markerColor: 'Poppy'      
    };
    
      var point_0 = new GLatLng(address_0.latitude, address_0.longitude);
      var marker_0 = new GMarker(point_0, icon_0);
      GEvent.addListener(marker_0, 'click', function() {
        marker_0.openInfoWindowHtml(address_0.infowindowtext);
      });
      if(!fromAddress.enabled || 'address_0' != 'address_14') {
            map.setCenter(point_0, 13);
            map.addOverlay(marker_0);
            marker_0.openInfoWindowHtml(address_0.infowindowtext);
      }
      wagmp_map_4_obj.markers.push(marker_0);
      wagmp_map_4_obj.addresses.push(address_0);
      wagmp_map_4_obj.icons.push(icon_0);
      wagmp_map_4_obj.points.push(point_0);

    
    var icon_1 = new GIcon();
    icon_1.image = 'http://google.webassist.com/google/markers/star/moab.png';
    icon_1.shadow = 'http://google.webassist.com/google/markers/star/shadow.png';
    icon_1.iconSize = new GSize(29,39);
    icon_1.shadowSize = new GSize(29,39);
    icon_1.iconAnchor = new GPoint(15,15);
    icon_1.infoWindowAnchor = new GPoint(19,7);
    icon_1.printImage = 'http://google.webassist.com/google/markers/star/moab.gif';
    icon_1.mozPrintImage = 'http://google.webassist.com/google/markers/star/moab_mozprint.png';
    icon_1.printShadow = 'http://google.webassist.com/google/markers/star/shadow.gif';
    icon_1.transparent = 'http://google.webassist.com/google/markers/star/moab_transparent.png';
    
    var address_1 = {
      street: '',
      city: '',
      state: '',
      zip: '',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;"><strong>Ford\'s Terror</strong><br />Ford\'s Terror, one of the most spectacular<br /> destinations in Southeast Alaska, is named after a<br /> naval crew member who rowed a dinghy into the<br /> narrow entrance of the fjord at slack tide in 1889.<br /> Ford suffered six terrifying hours trapped in the<br /> turbulent currents. Luckily for us, tide tables and<br /> plenty of experience prevent any danger.</span>',
      full: '57.635478,-133.173522',
      isdefault: false,
      addressType: 'coordinates',
      loop: '',
      latitude: '57.635478',
      longitude: '-133.173522',
      markerStyle: 'Star',
      markerColor: 'Moab'      
    };
 
      var point_1 = new GLatLng(address_1.latitude, address_1.longitude);
      var marker_1 = new GMarker(point_1, icon_1);
      GEvent.addListener(marker_1, 'click', function() {
        marker_1.openInfoWindowHtml(address_1.infowindowtext);
      });
      if(!fromAddress.enabled || 'address_1' != 'address_14') {
            map.setCenter(point_1, 13);
            map.addOverlay(marker_1);
            marker_1.openInfoWindowHtml(address_1.infowindowtext);
      }
      wagmp_map_4_obj.markers.push(marker_1);
      wagmp_map_4_obj.addresses.push(address_1);
      wagmp_map_4_obj.icons.push(icon_1);
      wagmp_map_4_obj.points.push(point_1);

    var icon_2 = new GIcon();
    icon_2.image = 'http://google.webassist.com/google/markers/star/granitepine.png';
    icon_2.shadow = 'http://google.webassist.com/google/markers/star/shadow.png';
    icon_2.iconSize = new GSize(29,39);
    icon_2.shadowSize = new GSize(29,39);
    icon_2.iconAnchor = new GPoint(15,15);
    icon_2.infoWindowAnchor = new GPoint(19,7);
    icon_2.printImage = 'http://google.webassist.com/google/markers/star/granitepine.gif';
    icon_2.mozPrintImage = 'http://google.webassist.com/google/markers/star/granitepine_mozprint.png';
    icon_2.printShadow = 'http://google.webassist.com/google/markers/star/shadow.gif';
    icon_2.transparent = 'http://google.webassist.com/google/markers/star/granitepine_transparent.png';
    
    var address_2 = {
      street: '',
      city: '',
      state: '',
      zip: '',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;"><strong>Sea Lion Cove</strong><br />The trail to Sea Lion Cove is a 1.25 mile hike through<br /> forest and muskeg, to a lovely white sand beach.<br /> The cove is on the Pacific Ocean, and big waves are<br /> always breaking. Locals come to here to ride the<br /> extreme surf of the outer coast. But it’s also a<br /> wonderful for beach coming, hiking, photography,<br /> relaxing in the sand, or just simply taking in the<br /> views.</span>',
      full: '57.301492,-135.834617',
      isdefault: false,
      addressType: 'coordinates',
      loop: '',
      latitude: '57.301492',
      longitude: '-135.834617',
      markerStyle: 'Star',
      markerColor: 'Granite Pine'      
    };

      var point_2 = new GLatLng(address_2.latitude, address_2.longitude);
      var marker_2 = new GMarker(point_2, icon_2);
      GEvent.addListener(marker_2, 'click', function() {
        marker_2.openInfoWindowHtml(address_2.infowindowtext);
      });
      if(!fromAddress.enabled || 'address_2' != 'address_14') {
            map.setCenter(point_2, 13);
            map.addOverlay(marker_2);
            marker_2.openInfoWindowHtml(address_2.infowindowtext);
      }
      wagmp_map_4_obj.markers.push(marker_2);
      wagmp_map_4_obj.addresses.push(address_2);
      wagmp_map_4_obj.icons.push(icon_2);
      wagmp_map_4_obj.points.push(point_2);

    var icon_3 = new GIcon();
    icon_3.image = 'http://google.webassist.com/google/markers/star/desertspice.png';
    icon_3.shadow = 'http://google.webassist.com/google/markers/star/shadow.png';
    icon_3.iconSize = new GSize(29,39);
    icon_3.shadowSize = new GSize(29,39);
    icon_3.iconAnchor = new GPoint(15,15);
    icon_3.infoWindowAnchor = new GPoint(19,7);
    icon_3.printImage = 'http://google.webassist.com/google/markers/star/desertspice.gif';
    icon_3.mozPrintImage = 'http://google.webassist.com/google/markers/star/desertspice_mozprint.png';
    icon_3.printShadow = 'http://google.webassist.com/google/markers/star/shadow.gif';
    icon_3.transparent = 'http://google.webassist.com/google/markers/star/desertspice_transparent.png';
    
    var address_3 = {
      street: '',
      city: '',
      state: '',
      zip: '',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;"><strong>Mt. Edgecomb</strong><br />Majestic Mt. Edgecomb looms in the distance, a<br /> beautiful dormant volcano. The size and beauty<br /> of Mt. Edgecomb is mesmerizing.</span>',
      full: '57.054503,-135.750589',
      isdefault: false,
      addressType: 'coordinates',
      loop: '',
      latitude: '57.054503',
      longitude: '-135.750589',
      markerStyle: 'Star',
      markerColor: 'Desert Spice'      
    };

      var point_3 = new GLatLng(address_3.latitude, address_3.longitude);
      var marker_3 = new GMarker(point_3, icon_3);
      GEvent.addListener(marker_3, 'click', function() {
        marker_3.openInfoWindowHtml(address_3.infowindowtext);
      });
      if(!fromAddress.enabled || 'address_3' != 'address_14') {
            map.setCenter(point_3, 13);
            map.addOverlay(marker_3);
            marker_3.openInfoWindowHtml(address_3.infowindowtext);
      }
      wagmp_map_4_obj.markers.push(marker_3);
      wagmp_map_4_obj.addresses.push(address_3);
      wagmp_map_4_obj.icons.push(icon_3);
      wagmp_map_4_obj.points.push(point_3);

    var icon_4 = new GIcon();
    icon_4.image = 'http://google.webassist.com/google/markers/star/tahitisea.png';
    icon_4.shadow = 'http://google.webassist.com/google/markers/star/shadow.png';
    icon_4.iconSize = new GSize(29,39);
    icon_4.shadowSize = new GSize(29,39);
    icon_4.iconAnchor = new GPoint(15,15);
    icon_4.infoWindowAnchor = new GPoint(19,7);
    icon_4.printImage = 'http://google.webassist.com/google/markers/star/tahitisea.gif';
    icon_4.mozPrintImage = 'http://google.webassist.com/google/markers/star/tahitisea_mozprint.png';
    icon_4.printShadow = 'http://google.webassist.com/google/markers/star/shadow.gif';
    icon_4.transparent = 'http://google.webassist.com/google/markers/star/tahitisea_transparent.png';
    
    var address_4 = {
      street: '',
      city: '',
      state: '',
      zip: '',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;"><strong>Pybus Bay</strong><br />We anchor in an idyllic setting at Pybus Bay, where<br /> the sounds of breathing whales, grunting steller sea<br /> lions, and screeching eagles drift in across the<br /> evening calm. Beautiful, remote, and protected from<br /> outer waters, Pybus Bay is pristine and serene.<br /> Brown bears are abundant along the grassy beaches<br /> in spring, and near salmon streams in summer.</span>',
      full: '57.329486,-134.114914?',
      isdefault: false,
      addressType: 'coordinates',
      loop: '',
      latitude: '57.329486',
      longitude: '-134.114914',
      markerStyle: 'Star',
      markerColor: 'Tahiti Sea'      
    };
	
      var point_4 = new GLatLng(address_4.latitude, address_4.longitude);
      var marker_4 = new GMarker(point_4, icon_4);
      GEvent.addListener(marker_4, 'click', function() {
        marker_4.openInfoWindowHtml(address_4.infowindowtext);
      });
      if(!fromAddress.enabled || 'address_4' != 'address_14') {
            map.setCenter(point_4, 13);
            map.addOverlay(marker_4);
            marker_4.openInfoWindowHtml(address_4.infowindowtext);
      }
      wagmp_map_4_obj.markers.push(marker_4);
      wagmp_map_4_obj.addresses.push(address_4);
      wagmp_map_4_obj.icons.push(icon_4);
      wagmp_map_4_obj.points.push(point_4);
      
    var icon_5 = new GIcon();
    icon_5.image = 'http://google.webassist.com/google/markers/star/pacifica.png';
    icon_5.shadow = 'http://google.webassist.com/google/markers/star/shadow.png';
    icon_5.iconSize = new GSize(29,39);
    icon_5.shadowSize = new GSize(29,39);
    icon_5.iconAnchor = new GPoint(15,15);
    icon_5.infoWindowAnchor = new GPoint(19,7);
    icon_5.printImage = 'http://google.webassist.com/google/markers/star/pacifica.gif';
    icon_5.mozPrintImage = 'http://google.webassist.com/google/markers/star/pacifica_mozprint.png';
    icon_5.printShadow = 'http://google.webassist.com/google/markers/star/shadow.gif';
    icon_5.transparent = 'http://google.webassist.com/google/markers/star/pacifica_transparent.png';
    
    var address_5 = {
      street: '',
      city: '',
      state: '',
      zip: '',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;"><strong>Sitka, Alaska</strong><br />Plan to daprt from Sitka, Alaska on a regularly<br /> scheduled Alaska Airlines flight, on the day following<br /> our trip departure. You will have the afternoon and<br /> evening free, to explore the shops in the scenic<br /> community of Sitka. We will provide you with a list of<br /> lodges, including the Westmark Sitka.</span>',
      full: '57.050208,-135.351392',
      isdefault: false,
      addressType: 'coordinates',
      loop: '',
      latitude: '57.050208',
      longitude: '-135.351392',
      markerStyle: 'Star',
      markerColor: 'Pacifica'      
    };

      var point_5 = new GLatLng(address_5.latitude, address_5.longitude);
      var marker_5 = new GMarker(point_5, icon_5);
      GEvent.addListener(marker_5, 'click', function() {
        marker_5.openInfoWindowHtml(address_5.infowindowtext);
      });
      if(!fromAddress.enabled || 'address_5' != 'address_14') {
            map.setCenter(point_5, 13);
            map.addOverlay(marker_5);
            marker_5.openInfoWindowHtml(address_5.infowindowtext);
      }
      wagmp_map_4_obj.markers.push(marker_5);
      wagmp_map_4_obj.addresses.push(address_5);
      wagmp_map_4_obj.icons.push(icon_5);
      wagmp_map_4_obj.points.push(point_5);

    var icon_6 = new GIcon();
    icon_6.image = 'http://google.webassist.com/google/markers/star/deepjungle.png';
    icon_6.shadow = 'http://google.webassist.com/google/markers/star/shadow.png';
    icon_6.iconSize = new GSize(29,39);
    icon_6.shadowSize = new GSize(29,39);
    icon_6.iconAnchor = new GPoint(15,15);
    icon_6.infoWindowAnchor = new GPoint(19,7);
    icon_6.printImage = 'http://google.webassist.com/google/markers/star/deepjungle.gif';
    icon_6.mozPrintImage = 'http://google.webassist.com/google/markers/star/deepjungle_mozprint.png';
    icon_6.printShadow = 'http://google.webassist.com/google/markers/star/shadow.gif';
    icon_6.transparent = 'http://google.webassist.com/google/markers/star/deepjungle_transparent.png';
    
    var address_6 = {
      street: '',
      city: '',
      state: '',
      zip: '',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;"><strong>Peril Strait</strong><br />Peril Strait gets its name from an unfortunate<br /> occurrence in 1799, when Aleut hunters stopped to<br /> camp there. Finding the shore lined with large<br /> mussels, they helped themselves to a fabulous<br /> feast. Unfortunately, the mussels were infected with<br /> paralytic shellfish poisoning, and more than a<br /> hundred Aleuts were poisoned and died.</span>',
      full: '57.521169,-135.258694',
      isdefault: false,
      addressType: 'coordinates',
      loop: '',
      latitude: '57.521169',
      longitude: '-135.258694',
      markerStyle: 'Star',
      markerColor: 'Deep Jungle'      
    };
    
      var point_6 = new GLatLng(address_6.latitude, address_6.longitude);
      var marker_6 = new GMarker(point_6, icon_6);
      GEvent.addListener(marker_6, 'click', function() {
        marker_6.openInfoWindowHtml(address_6.infowindowtext);
      });
      if(!fromAddress.enabled || 'address_6' != 'address_14') {
            map.setCenter(point_6, 13);
            map.addOverlay(marker_6);
            marker_6.openInfoWindowHtml(address_6.infowindowtext);
      }
      wagmp_map_4_obj.markers.push(marker_6);
      wagmp_map_4_obj.addresses.push(address_6);
      wagmp_map_4_obj.icons.push(icon_6);
      wagmp_map_4_obj.points.push(point_6);

    var icon_7 = new GIcon();
    icon_7.image = 'http://google.webassist.com/google/markers/star/slate.png';
    icon_7.shadow = 'http://google.webassist.com/google/markers/star/shadow.png';
    icon_7.iconSize = new GSize(29,39);
    icon_7.shadowSize = new GSize(29,39);
    icon_7.iconAnchor = new GPoint(15,15);
    icon_7.infoWindowAnchor = new GPoint(19,7);
    icon_7.printImage = 'http://google.webassist.com/google/markers/star/slate.gif';
    icon_7.mozPrintImage = 'http://google.webassist.com/google/markers/star/slate_mozprint.png';
    icon_7.printShadow = 'http://google.webassist.com/google/markers/star/shadow.gif';
    icon_7.transparent = 'http://google.webassist.com/google/markers/star/slate_transparent.png';
    
    var address_7 = {
      street: '',
      city: '',
      state: '',
      zip: '',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;"><strong>Sweetheart Creek</strong><br />Sweetheart Creek is the terminus of a series of<br /> cascading waterfalls, which have glacially-fed<br /> Sweetheart Lake as their source. Often brown bears<br /> can be observed fishing in the pools below the falls.<br /> We\'ll hike through a rainforest of sitka spruce and<br /> hemlock trees, skunk cabbage and ferns. Along the<br /> way, we\'ll observe the tracks and signs of brown<br /> bears, moose, wolves, porcupines, river otters and<br /> sable.</span>',
      full: '57.941008,-133.690825',
      isdefault: false,
      addressType: 'coordinates',
      loop: '',
      latitude: '57.941008',
      longitude: '-133.690825',
      markerStyle: 'Star',
      markerColor: 'Slate'      
    };
    
      var point_7 = new GLatLng(address_7.latitude, address_7.longitude);
      var marker_7 = new GMarker(point_7, icon_7);
      GEvent.addListener(marker_7, 'click', function() {
        marker_7.openInfoWindowHtml(address_7.infowindowtext);
      });
      if(!fromAddress.enabled || 'address_7' != 'address_14') {
            map.setCenter(point_7, 13);
            map.addOverlay(marker_7);
            marker_7.openInfoWindowHtml(address_7.infowindowtext);
      }
      wagmp_map_4_obj.markers.push(marker_7);
      wagmp_map_4_obj.addresses.push(address_7);
      wagmp_map_4_obj.icons.push(icon_7);
      wagmp_map_4_obj.points.push(point_7);

    var icon_8 = new GIcon();
    icon_8.image = 'http://google.webassist.com/google/markers/star/pacifica.png';
    icon_8.shadow = 'http://google.webassist.com/google/markers/star/shadow.png';
    icon_8.iconSize = new GSize(29,39);
    icon_8.shadowSize = new GSize(29,39);
    icon_8.iconAnchor = new GPoint(15,15);
    icon_8.infoWindowAnchor = new GPoint(19,7);
    icon_8.printImage = 'http://google.webassist.com/google/markers/star/pacifica.gif';
    icon_8.mozPrintImage = 'http://google.webassist.com/google/markers/star/pacifica_mozprint.png';
    icon_8.printShadow = 'http://google.webassist.com/google/markers/star/shadow.gif';
    icon_8.transparent = 'http://google.webassist.com/google/markers/star/pacifica_transparent.png';
    
    var address_8 = {
      street: '',
      city: '',
      state: '',
      zip: '',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;"><strong>The Brothers</strong><br />This picturesque group of islands is a photographer\'s<br /> paradise. We can pick wild strawberries, learn about<br /> native plants, and revel in the glorious meadows of<br /> harebells, Indian paintbrush, lupine, columbine,<br /> irises, chocolate lilies, river beauties, fireweed, and<br /> more. We\'ll also explore a productive intertidal zone,<br /> home to hundreds of sea stars, sea cucumbers,<br /> spiny sea urchins, sponges, periwinkles and<br /> whelks. During an extra-low tide at The Brothers,<br /> a wide variety of anemones gleam brilliantly.</span>',
      full: '57.283775,-133.866864',
      isdefault: false,
      addressType: 'coordinates',
      loop: '',
      latitude: '57.283775',
      longitude: '-133.866864',
      markerStyle: 'Star',
      markerColor: 'Pacifica'      
    };
    
      var point_8 = new GLatLng(address_8.latitude, address_8.longitude);
      var marker_8 = new GMarker(point_8, icon_8);
      GEvent.addListener(marker_8, 'click', function() {
        marker_8.openInfoWindowHtml(address_8.infowindowtext);
      });
      if(!fromAddress.enabled || 'address_8' != 'address_14') {
            map.setCenter(point_8, 13);
            map.addOverlay(marker_8);
            marker_8.openInfoWindowHtml(address_8.infowindowtext);
      }
      wagmp_map_4_obj.markers.push(marker_8);
      wagmp_map_4_obj.addresses.push(address_8);
      wagmp_map_4_obj.icons.push(icon_8);
      wagmp_map_4_obj.points.push(point_8);

    var icon_9 = new GIcon();
    icon_9.image = 'http://google.webassist.com/google/markers/star/pacifica.png';
    icon_9.shadow = 'http://google.webassist.com/google/markers/star/shadow.png';
    icon_9.iconSize = new GSize(29,39);
    icon_9.shadowSize = new GSize(29,39);
    icon_9.iconAnchor = new GPoint(15,15);
    icon_9.infoWindowAnchor = new GPoint(19,7);
    icon_9.printImage = 'http://google.webassist.com/google/markers/star/pacifica.gif';
    icon_9.mozPrintImage = 'http://google.webassist.com/google/markers/star/pacifica_mozprint.png';
    icon_9.printShadow = 'http://google.webassist.com/google/markers/star/shadow.gif';
    icon_9.transparent = 'http://google.webassist.com/google/markers/star/pacifica_transparent.png';
    
    var address_9 = {
      street: '',
      city: '',
      state: '',
      zip: '',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;"><strong>Sanford Cove</strong><br />Sanford Cove is near the abandoned site of the<br /> prospecting community of Sumdum. Little is left of<br /> the town, other than a few pilings. We hike along<br /> the banks of tiny Sanford Creek, through an old<br /> growth spruce and hemlock forest, to a stunning<br /> waterfall illuminated by the soft morning light, in a<br /> remarkable grotto of ferns and mosses.</span>',
      full: '57.674739,-133.480539',
      isdefault: false,
      addressType: 'coordinates',
      loop: '',
      latitude: '57.674739',
      longitude: '-133.480539',
      markerStyle: 'Star',
      markerColor: 'Pacifica'      
    };
    
      var point_9 = new GLatLng(address_9.latitude, address_9.longitude);
      var marker_9 = new GMarker(point_9, icon_9);
      GEvent.addListener(marker_9, 'click', function() {
        marker_9.openInfoWindowHtml(address_9.infowindowtext);
      });
      if(!fromAddress.enabled || 'address_9' != 'address_14') {
            map.setCenter(point_9, 13);
            map.addOverlay(marker_9);
            marker_9.openInfoWindowHtml(address_9.infowindowtext);
      }
      wagmp_map_4_obj.markers.push(marker_9);
      wagmp_map_4_obj.addresses.push(address_9);
      wagmp_map_4_obj.icons.push(icon_9);
      wagmp_map_4_obj.points.push(point_9);

    var icon_10 = new GIcon();
    icon_10.image = 'http://google.webassist.com/google/markers/star/yosemite.png';
    icon_10.shadow = 'http://google.webassist.com/google/markers/star/shadow.png';
    icon_10.iconSize = new GSize(29,39);
    icon_10.shadowSize = new GSize(29,39);
    icon_10.iconAnchor = new GPoint(15,15);
    icon_10.infoWindowAnchor = new GPoint(19,7);
    icon_10.printImage = 'http://google.webassist.com/google/markers/star/yosemite.gif';
    icon_10.mozPrintImage = 'http://google.webassist.com/google/markers/star/yosemite_mozprint.png';
    icon_10.printShadow = 'http://google.webassist.com/google/markers/star/shadow.gif';
    icon_10.transparent = 'http://google.webassist.com/google/markers/star/yosemite_transparent.png';
    
    var address_10 = {
      street: '',
      city: '',
      state: '',
      zip: '',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;"><strong>Auke Bay</strong><br />Participants should plan to arrive in Juneau, Alaska<br /> on a scheduled Alaska Airlines flight, the day prior to<br /> our departure.</span>',
      full: '58.384314,-134.648761',
      isdefault: false,
      addressType: 'coordinates',
      loop: '',
      latitude: '58.384314',
      longitude: '-134.648761',
      markerStyle: 'Star',
      markerColor: 'Yosemite'      
    };
    
      var point_10 = new GLatLng(address_10.latitude, address_10.longitude);
      var marker_10 = new GMarker(point_10, icon_10);
      GEvent.addListener(marker_10, 'click', function() {
        marker_10.openInfoWindowHtml(address_10.infowindowtext);
      });
      if(!fromAddress.enabled || 'address_10' != 'address_14') {
            map.setCenter(point_10, 13);
            map.addOverlay(marker_10);
            marker_10.openInfoWindowHtml(address_10.infowindowtext);
      }
      wagmp_map_4_obj.markers.push(marker_10);
      wagmp_map_4_obj.addresses.push(address_10);
      wagmp_map_4_obj.icons.push(icon_10);
      wagmp_map_4_obj.points.push(point_10);

    var icon_11 = new GIcon();
    icon_11.image = 'http://google.webassist.com/google/markers/star/cabosunset.png';
    icon_11.shadow = 'http://google.webassist.com/google/markers/star/shadow.png';
    icon_11.iconSize = new GSize(29,39);
    icon_11.shadowSize = new GSize(29,39);
    icon_11.iconAnchor = new GPoint(15,15);
    icon_11.infoWindowAnchor = new GPoint(19,7);
    icon_11.printImage = 'http://google.webassist.com/google/markers/star/cabosunset.gif';
    icon_11.mozPrintImage = 'http://google.webassist.com/google/markers/star/cabosunset_mozprint.png';
    icon_11.printShadow = 'http://google.webassist.com/google/markers/star/shadow.gif';
    icon_11.transparent = 'http://google.webassist.com/google/markers/star/cabosunset_transparent.png';
    
    var address_11 = {
      street: '',
      city: '',
      state: '',
      zip: '',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;"><strong>Lake Eva</strong><br />We’ll hike up a stream to picturesque  Lake Eva. In<br /> summer the stream is often filled with salmon and<br /> hungry bears. Sea milkwort, paintbrush, dwarf<br /> dogwood, western coralroot, and pinesap paint<br /> vibrant colors across the meadows. New species of<br /> wildflowers open daily, including a bank of<br /> buttercups interspersed with dwarf dogwood,<br /> shooting stars and Alaska violets. A beaver lodge<br /> dams the edge of the lake.</span>',
      full: '57.396978,-135.101281',
      isdefault: false,
      addressType: 'coordinates',
      loop: '',
      latitude: '57.396978',
      longitude: '-135.101281',
      markerStyle: 'Star',
      markerColor: 'Cabo Sunset'      
    };
    
      var point_11 = new GLatLng(address_11.latitude, address_11.longitude);
      var marker_11 = new GMarker(point_11, icon_11);
      GEvent.addListener(marker_11, 'click', function() {
        marker_11.openInfoWindowHtml(address_11.infowindowtext);
      });
      if(!fromAddress.enabled || 'address_11' != 'address_14') {
            map.setCenter(point_11, 13);
            map.addOverlay(marker_11);
            marker_11.openInfoWindowHtml(address_11.infowindowtext);
      }
      wagmp_map_4_obj.markers.push(marker_11);
      wagmp_map_4_obj.addresses.push(address_11);
      wagmp_map_4_obj.icons.push(icon_11);
      wagmp_map_4_obj.points.push(point_11);

    var icon_12 = new GIcon();
    icon_12.image = 'http://google.webassist.com/google/markers/star/pacifica.png';
    icon_12.shadow = 'http://google.webassist.com/google/markers/star/shadow.png';
    icon_12.iconSize = new GSize(29,39);
    icon_12.shadowSize = new GSize(29,39);
    icon_12.iconAnchor = new GPoint(15,15);
    icon_12.infoWindowAnchor = new GPoint(19,7);
    icon_12.printImage = 'http://google.webassist.com/google/markers/star/pacifica.gif';
    icon_12.mozPrintImage = 'http://google.webassist.com/google/markers/star/pacifica_mozprint.png';
    icon_12.printShadow = 'http://google.webassist.com/google/markers/star/shadow.gif';
    icon_12.transparent = 'http://google.webassist.com/google/markers/star/pacifica_transparent.png';
    
    var address_12 = {
      street: '',
      city: '',
      state: '',
      zip: '',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;"><strong>Baranof Warm Springs</strong><br />At Baranof Warm Springs, a natural hot spring is<br /> situated next to a rushing waterfall. Baranof Hot<br /> Springs is the outlet of Baranof Lake and the Baranof<br /> River. There are natural outdoor hot pools, and a<br /> public bath house which features three separate<br /> tubs and communal hot springs pools. A boardwalk<br /> takes us through the flora and fauna to picturesque<br /> Baranof Lake.</span>',
      full: '57.080772,-134.798814',
      isdefault: false,
      addressType: 'coordinates',
      loop: '',
      latitude: '57.080772',
      longitude: '-134.798814',
      markerStyle: 'Star',
      markerColor: 'Pacifica'      
    };
    
      var point_12 = new GLatLng(address_12.latitude, address_12.longitude);
      var marker_12 = new GMarker(point_12, icon_12);
      GEvent.addListener(marker_12, 'click', function() {
        marker_12.openInfoWindowHtml(address_12.infowindowtext);
      });
      if(!fromAddress.enabled || 'address_12' != 'address_14') {
            map.setCenter(point_12, 13);
            map.addOverlay(marker_12);
            marker_12.openInfoWindowHtml(address_12.infowindowtext);
      }
      wagmp_map_4_obj.markers.push(marker_12);
      wagmp_map_4_obj.addresses.push(address_12);
      wagmp_map_4_obj.icons.push(icon_12);
      wagmp_map_4_obj.points.push(point_12);

    var icon_13 = new GIcon();
    icon_13.image = 'http://google.webassist.com/google/markers/star/tahitisea.png';
    icon_13.shadow = 'http://google.webassist.com/google/markers/star/shadow.png';
    icon_13.iconSize = new GSize(29,39);
    icon_13.shadowSize = new GSize(29,39);
    icon_13.iconAnchor = new GPoint(15,15);
    icon_13.infoWindowAnchor = new GPoint(19,7);
    icon_13.printImage = 'http://google.webassist.com/google/markers/star/tahitisea.gif';
    icon_13.mozPrintImage = 'http://google.webassist.com/google/markers/star/tahitisea_mozprint.png';
    icon_13.printShadow = 'http://google.webassist.com/google/markers/star/shadow.gif';
    icon_13.transparent = 'http://google.webassist.com/google/markers/star/tahitisea_transparent.png';
    
    var address_13 = {
      street: '',
      city: '',
      state: '',
      zip: '',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;"><strong>Security Bay</strong><br />Security Bay is located on the north end of Kuiu<br /> Island, facing Frederick Sound and Chatham Strait.</span>',
      full: '56.821928,-134.329833',
      isdefault: false,
      addressType: 'coordinates',
      loop: '',
      latitude: '56.821928',
      longitude: '-134.329833',
      markerStyle: 'Star',
      markerColor: 'Tahiti Sea'      
    };
    
      var point_13 = new GLatLng(address_13.latitude, address_13.longitude);
      var marker_13 = new GMarker(point_13, icon_13);
      GEvent.addListener(marker_13, 'click', function() {
        marker_13.openInfoWindowHtml(address_13.infowindowtext);
      });
      if(!fromAddress.enabled || 'address_13' != 'address_14') {
            map.setCenter(point_13, 13);
            map.addOverlay(marker_13);
            marker_13.openInfoWindowHtml(address_13.infowindowtext);
      }
      wagmp_map_4_obj.markers.push(marker_13);
      wagmp_map_4_obj.addresses.push(address_13);
      wagmp_map_4_obj.icons.push(icon_13);
      wagmp_map_4_obj.points.push(point_13);

    var icon_14 = new GIcon();
    icon_14.image = 'http://google.webassist.com/google/markers/star/pacifica.png';
    icon_14.shadow = 'http://google.webassist.com/google/markers/star/shadow.png';
    icon_14.iconSize = new GSize(29,39);
    icon_14.shadowSize = new GSize(29,39);
    icon_14.iconAnchor = new GPoint(15,15);
    icon_14.infoWindowAnchor = new GPoint(19,7);
    icon_14.printImage = 'http://google.webassist.com/google/markers/star/pacifica.gif';
    icon_14.mozPrintImage = 'http://google.webassist.com/google/markers/star/pacifica_mozprint.png';
    icon_14.printShadow = 'http://google.webassist.com/google/markers/star/shadow.gif';
    icon_14.transparent = 'http://google.webassist.com/google/markers/star/pacifica_transparent.png';
    
    var address_14 = {
      street: '',
      city: '',
      state: '',
      zip: '',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;"><strong>Ultimate Sailing Adventure</strong><br />On this amazing nine-day sailing expedition, we\'ll<br /> experience two of the awe-inspiring attractions of<br /> Southeast Alaska: the Inside Passage, and the<br /> spectacular Outer Coast. On our journey, we\'ll<br /> see charming fishing villages, an incredible array of<br /> wildlife, and breathtaking scenery.</span>',
      full: '57.545314,-134.027711',
      isdefault: true,
      addressType: 'coordinates',
      loop: '',
      latitude: '57.545314',
      longitude: '-134.027711',
      markerStyle: 'Star',
      markerColor: 'Pacifica'      
    };
    
      var point_14 = new GLatLng(address_14.latitude, address_14.longitude);
      var marker_14 = new GMarker(point_14, icon_14);
      GEvent.addListener(marker_14, 'click', function() {
        marker_14.openInfoWindowHtml(address_14.infowindowtext);
      });
      if(!fromAddress.enabled || 'address_14' != 'address_14') {
            map.setCenter(point_14, 7);
            map.addOverlay(marker_14);
            marker_14.openInfoWindowHtml(address_14.infowindowtext);
      }
      wagmp_map_4_obj.markers.push(marker_14);
      wagmp_map_4_obj.addresses.push(address_14);
      wagmp_map_4_obj.icons.push(icon_14);
      wagmp_map_4_obj.points.push(point_14);


  }
}
