

   <!--
       browserName = navigator.appName;
       browserVer = parseInt(navigator.appVersion);
       if ((browserName == "Netscape" && browserVer >= 3) || (browserName == "Microsoft Internet Explorer" && browserVer >=4)) {
           browserOK = "yes";
           }
       else {
           browserOK = "no";
           }

       if (browserOK == "yes")
	   
	   		   
{
           toursOn = new Image;
           toursOn.src = "gif/tours1.gif";
           toursOff = new Image;
           toursOff.src = "gif/tours.gif";
           }	
{
           insuranceOn = new Image;
           insuranceOn.src = "gif/insurancea1.gif";
           insuranceOff = new Image;
           insuranceOff.src = "gif/insurancea.gif";
           }	
		   
		   {
           cruisesOn = new Image;
           cruisesOn.src = "gif/cruises1.gif";
           cruisesOff = new Image;
           cruisesOff.src = "gif/cruises.gif";
           }				   
		   {
           sexcursionsOn = new Image;
           sexcursionsOn.src = "gif/sexcursions1.gif";
           sexcursionsOff = new Image;
           sexcursionsOff.src = "gif/sexcursions.gif";
           }	
		   {
           denalitoursOn = new Image;
           denalitoursOn.src = "gif/denalitours1.gif";
           denalitoursOff = new Image;
           denalitoursOff.src = "gif/denalitours.gif";
           }	
		      		   {
           lodgesOn = new Image;
           lodgesOn.src = "gif/lodges1.gif";
           lodgesOff = new Image;
           lodgesOff.src = "gif/lodges.gif";
           }
	        
{
           specialsOn = new Image;
           specialsOn.src = "gif/specials1.gif";
           specialsOff = new Image;
           specialsOff.src = "gif/specials.gif";
           }
		   {
           payonlineOn = new Image;
           payonlineOn.src = "gif/payonline1.gif";
           payonlineOff = new Image;
           payonlineOff.src = "gif/payonline.gif";
           }
		   {
           bookingOn = new Image;
           bookingOn.src = "gif/booking1.gif";
           bookingOff = new Image;
           bookingOff.src = "gif/booking.gif";
           }	
{
           aboutOn = new Image;
           aboutOn.src = "gif/about1.gif";
           aboutOff = new Image;
           aboutOff.src = "gif/about.gif";
           }

{
           emailOn = new Image;
           emailOn.src = "gif/email1.gif";
           emailOff = new Image;
           emailOff.src = "gif/email.gif";
           }
{
           termsOn = new Image;
           termsOn.src = "gif/terms1.gif";
           termsOff = new Image;
           termsOff.src = "gif/terms.gif";
           }		   
{
           homeOn = new Image;
           homeOn.src = "gif/home1.gif";
           homeOff = new Image;
           homeOff.src = "gif/home.gif";

           }
		   
		   {
           taOn = new Image;
           taOn.src = "gif/ta1.gif";
           taOff = new Image;
           taOff.src = "gif/ta.gif";
           }	
       function imageOn(imgName) {
           if (browserOK == "yes") {
               imgOn = eval(imgName + "On.src");
               document.images[imgName].src = imgOn;
           }

       }
       function imageOff(imgName) {
           if (browserOK == "yes") {
               imgOff = eval(imgName + "Off.src");
               document.images[imgName].src = imgOff;
           }
       }
   //-->
   
   <!--BEGIN One Time Pop-up Windows Script----------------------------------------->

<!--
// Copyright 2002 by Ray Stott, One Time Pop-up Windows Script ver 1.0
// OK to use if this copyright is included
// Script is available at http://www.crays.com/jsc          

var oneTimeWinName = "oneTimePop"
function openPopWinOnce(winURL, winWidth, winHeight, winFeatures, winLeft, winTop){
  var d_winLeft = 400  // default, pixels from screen left to window left
  var d_winTop = 20   // default, pixels from screen top to window top
  var popcookies = document.cookie
  if (openPopWinOnce.arguments.length >= 4)  // any additional features? 
    winFeatures = "," + winFeatures
  else 
    winFeatures = "" 
  if (openPopWinOnce.arguments.length == 6)  // location specified
    winFeatures += getLocationOne(winWidth, winHeight, winLeft, winTop)
  else
    winFeatures += getLocationOne(winWidth, winHeight, d_winLeft, d_winTop)
  if (popcookies.indexOf(oneTimeWinName) == -1){ // cookie not found 
    window.open(winURL, oneTimeWinName, "width=" + winWidth 
           + ",height=" + winHeight + winFeatures)
    document.cookie=oneTimeWinName+"=used"
    }
  }
function openPopWinOnceBack(winURL, winWidth, winHeight, winFeatures, winLeft, winTop){
  openPopWinOnce(winURL, winWidth, winHeight, winFeatures, winLeft, winTop)
  self.focus()
  }
function getLocationOne(winWidth, winHeight, winLeft, winTop){
  return ""
  }
//-->
   
   <!--
function getLocationOne(winWidth, winHeight, winLeft, winTop){
  var winLocation = ""
  if (winLeft < 0)
    winLeft = screen.width - winWidth + winLeft
  if (winTop < 0)
    winTop = screen.height - winHeight + winTop
  if (winTop == "cen")
    winTop = (screen.height - winHeight)/2 - 20
  if (winLeft == "cen")
    winLeft = (screen.width - winWidth)/2
  if (winLeft>0 & winTop>0)
    winLocation =  ",screenX=" + winLeft + ",left=" + winLeft	
                + ",screenY=" + winTop + ",top=" + winTop
  else
    winLocation = ""
  return winLocation
  }
//-->

<!--END One Time Pop-up Windows Script------------------------------------------->

<!--
// Copyright 1999 - 2002 by Ray Stott, Pop-up Windows Script ver 2.0
// OK to use if this copyright is included
// Script is available at http://www.crays.com/jsc          

var popWin = null    // use this when referring to pop-up window
var winCount = 0
var winName = "popWin"
function openPopWin(winURL, winWidth, winHeight, winFeatures, winLeft, winTop){
  var d_winLeft = 20  // default, pixels from screen left to window left
  var d_winTop = 20   // default, pixels from screen top to window top
  winName = "popWin" + winCount++ //unique name for each pop-up window
  closePopWin()           // close any previously opened pop-up window
  if (openPopWin.arguments.length >= 4)  // any additional features? 
    winFeatures = "," + winFeatures
  else 
    winFeatures = "" 
  if (openPopWin.arguments.length == 6)  // location specified
    winFeatures += getLocation(winWidth, winHeight, winLeft, winTop)
  else
    winFeatures += getLocation(winWidth, winHeight, d_winLeft, d_winTop)
  popWin = window.open(winURL, winName, "width=" + winWidth 
           + ",height=" + winHeight + winFeatures)
  }
function closePopWin(){    // close pop-up window if it is open 
  if (navigator.appName != "Microsoft Internet Explorer" 
      || parseInt(navigator.appVersion) >=4) //do not close if early IE
    if(popWin != null) if(!popWin.closed) popWin.close() 
  }
function getLocation(winWidth, winHeight, winLeft, winTop){
  return ""
  }
//-->


<!--
function getLocation(winWidth, winHeight, winLeft, winTop){
  var winLocation = ""
  if (winLeft < 0)
    winLeft = screen.width - winWidth + winLeft
  if (winTop < 0)
    winTop = screen.height - winHeight + winTop
  if (winTop == "cen")
    winTop = (screen.height - winHeight)/2 - 20
  if (winLeft == "cen")
    winLeft = (screen.width - winWidth)/2
  if (winLeft>0 & winTop>0)
    winLocation =  ",screenX=" + winLeft + ",left=" + winLeft	
                + ",screenY=" + winTop + ",top=" + winTop
  else
    winLocation = ""
  return winLocation
  }
//-->


<!-- Begin
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=620,height=460,left = 150,top = 70');");
}
// End -->

   <!-- Begin 
function leapto(form) {
var myindex=form.dest.selectedIndex
window.location=(form.dest.options[myindex].value);
}
// End -->



