<!-- Hide script from old browsers



// Script Source: CodeLifter.com
// Copyright 2003
// Do not remove this notice.

// SETUPS:
// ===============================

// Set the horizontal and vertical position for the popup

PositionX = 100;
PositionY = 100;

// Set these value approximately 20 pixels greater than the
// size of the largest image to be used (needed for Netscape)

defaultWidth  = 500;
defaultHeight = 500;

// Set autoclose true to have the window close automatically
// Set autoclose false to allow multiple popup windows

var AutoClose = true;

// Do not edit below this line...
// ================================
if (parseInt(navigator.appVersion.charAt(0))>=4){
var isNN=(navigator.appName=="Netscape")?1:0;
var isIE=(navigator.appName.indexOf("Microsoft")!=-1)?1:0;}
var optNN='scrollbars=no,width='+defaultWidth+',height='+defaultHeight+',left='+PositionX+',top='+PositionY;
var optIE='scrollbars=no,width=150,height=100,left='+PositionX+',top='+PositionY;
function popImage(imageURL,imageTitle){
if (isNN){imgWin=window.open('about:blank','',optNN);}
if (isIE){imgWin=window.open('about:blank','',optIE);}
with (imgWin.document){
writeln('<html><head><title>Loading...</title><style>body{margin:0px;}</style>');writeln('<sc'+'ript>');
writeln('var isNN,isIE;');writeln('if (parseInt(navigator.appVersion.charAt(0))>=4){');
writeln('isNN=(navigator.appName=="Netscape")?1:0;');writeln('isIE=(navigator.appName.indexOf("Microsoft")!=-1)?1:0;}');
writeln('function reSizeToImage(){');writeln('if (isIE){');writeln('window.resizeTo(300,300);');
writeln('width=300-(document.body.clientWidth-document.images[0].width);');
writeln('height=300-(document.body.clientHeight-document.images[0].height);');
writeln('window.resizeTo(width,height);}');writeln('if (isNN){');       
writeln('window.innerWidth=document.images["George"].width;');writeln('window.innerHeight=document.images["George"].height;}}');
writeln('function doTitle(){document.title="'+imageTitle+'";}');writeln('</sc'+'ript>');
if (!AutoClose) writeln('</head><body bgcolor=000000 scroll="no" onload="reSizeToImage();doTitle();self.focus()">')
else writeln('</head><body bgcolor=000000 scroll="no" onload="reSizeToImage();doTitle();self.focus()" onblur="self.close()">');
writeln('<img name="George" src='+imageURL+' style="display:block"></body></html>');
close();		
}}




function setStatus(msg){
  status = msg
  return true
  } 


function loadfd(form) {
  checkVal = form.fd.selectedIndex;
  if (checkVal == 30){
    checkVal = checkVal-1;
  }
  form.td.options[checkVal+1].selected=1;
}

function loadfm(form) {
  checkVal = form.fm.selectedIndex;
  form.tm.options[checkVal].selected=1;
}

function loadfy(form) {
  checkVal = form.fy.selectedIndex;
  form.ty.options[checkVal].selected=1;
}

//Set current dates on form load
function LoadDates(form) {
  curDate = new Date();
  curDay = curDate.getDate();
  curMonth = curDate.getMonth();
  curYear = curDate.getFullYear();
  setYear = curYear - form.ty.options[0].text;

  if(curDay >= 28) {
    form.fd.selectedIndex = 0;
    if(curMonth == 11) {
      form.fm.selectedIndex = 0;
      form.fy.selectedIndex = setYear+1;
      form.ty.selectedIndex = setYear+1;
    } else if(curDay >= 28) {
      form.fm.selectedIndex = curMonth+1;
      form.fy.selectedIndex = setYear;
    }
  } else if(curDay < 28) {
    form.fd.selectedIndex = curDay+2;
    form.fm.selectedIndex = curMonth;
    form.fy.selectedIndex = setYear;
  }
}

var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=580,width=650,left=100, top=100,resizable=yes,scrollbars=yes,toolbar=yes, location=yes, status=yes');
	if (window.focus) {newwindow.focus()}
}


function changeImage(filename)
{
   document.mainimage.src = filename;
}


/* define image width and height */
var pic_width=250;
var pic_height=216;
/* define text to show on button */
button_text="Zoom Out";
button_text2=" Zoom In "
/* define image urls */
if (document.images)
 {
     pic1= new Image(pic_width,pic_height);
     pic1.src="images/amsterdam1.jpg";  
     pic2= new Image(pic_width,pic_height); 
     pic2.src="images/amsterdam2.jpg"; 
     pic3= new Image(pic_width,pic_height);
     pic3.src="images/amsterdam3.jpg";  
     pic4= new Image(pic_width,pic_height);
     pic4.src="images/amsterdam4.jpg";  
     
 }    
 
var pics= new Array(4) 
   pics[0]=pic1.src;
   pics[1]=pic2.src;
   pics[2]=pic3.src;
   pics[3]=pic4.src;
   

var numpics=4;
var thenum=3;
imgName="img1";

function change_it()
 {
   if (document.images)
    {
      document.write("<IMG SRC='"+pics[thenum]+"' border='1' width='"+pic_width+"' height='"+pic_height+"' name='img1'>");
      document.write("<FORM><INPUT TYPE='button' value='"+button_text+"' onClick='change_it3()'> <INPUT TYPE='button' value='"+button_text2+"' onClick='change_it2()'></FORM>");
	  
   }
}

function change_it2()
 {
         var x=0;
         thenum+=1;

         if (thenum>numpics-2)
         { 
           document[imgName].src=pics[numpics-1];
           thenum=numpics-1;
           }
         else
         {
           document[imgName].src=pics[thenum];
           x+=1;
          }
 }
 function change_it3()
 {
         var x=0;
         thenum-=1;

         if (thenum<0)
         { 
           document[imgName].src=pics[0];
           thenum=0;
           }
         else
         {
           document[imgName].src=pics[thenum];
           x-=1;
          }
 }

function bookmarksite(title, url){
if (document.all)
window.external.AddFavorite(url, title);
else if (window.sidebar)
window.sidebar.addPanel(title, url, "")
}



// end hiding contents from old browsers  -->