function externalLinks() { 
 if (!document.getElementsByTagName) return; 
 var anchors = document.getElementsByTagName("a"); 
 for (var i=0; i<anchors.length; i++) { 
   var anchor = anchors[i]; 
   if (anchor.getAttribute("href") && 
       anchor.getAttribute("rel") == "external") 
     anchor.target = "_blank"; 
 } 
} 
window.onload = externalLinks;

	var photos = new Array()
	var which = 0
	
	photos[0]="tour/Tamanawis_1.jpg"
	photos[1]="tour/Tamanawis_2.jpg"
	photos[2]="tour/Tamanawis_3.jpg"
	photos[3]="tour/Tamanawis_4.jpg"
	photos[4]="tour/Tamanawis_5.jpg"
	photos[5]="tour/Tamanawis_6.jpg"
	photos[6]="tour/Tamanawis_7.jpg"
	photos[7]="tour/Tamanawis_8.jpg"
	photos[8]="tour/Tam_Pan_1.jpg"
	photos[9]="tour/Tam_Pan_2.jpg"
	
function backward() {
if (which>0){
which--
document.images.photoslider.src=photos[which]
}
else alert("You can't go back any further!")
}

function forward(){
if (which<photos.length-1){
which++
document.images.photoslider.src=photos[which]
}
else alert("End Of Tour")
}

function one() {
	document.images.photoslider.src=photos[0]
}
function two() {
	document.images.photoslider.src=photos[1]
}
function three() {
	document.images.photoslider.src=photos[2]
}
function four() {
	document.images.photoslider.src=photos[3]
}
function five() {
	document.images.photoslider.src=photos[4]
}
function six() {
	document.images.photoslider.src=photos[5]
}
function seven() {
	document.images.photoslider.src=photos[6]
}
function eight() {
	document.images.photoslider.src=photos[7]
}
function nine() {
	document.images.photoslider.src=photos[8]
}
function ten() {
	document.images.photoslider.src=photos[9]
}