// JavaScript Document
function callnepal(){
		getFile("nepalinfo.php");
	}
	
function calleverest(){
		getFile("everest.php");
		}
function callbhaktapur(){
	getFile("bhaktapur.php");
	}
function calllalitpur() {
	getFile("lalitpur.php");
}
function calloutside() {
	getFile("outsidevalley.php");
	}
function calljungle() {
	getFile("jungle.php");
	}
function callhill() {
	getFile("hill.php");
	}
function callkathmandu() {
	getFile("kathmandu.php");
	}
function getFile(fileName,opt)
{
	ajax.requestFile = fileName;	// Specifying which file to get
	ajax.onCompletion = showGeoContent;	// Specify function that will be executed after file has been found
	ajax.onLoading = showGeoWaitMessage;	// Action when AJAX is loading the file
	ajax.runAJAX();		// Execute AJAX function	
}

function showGeoWaitMessage () {
	document.getElementById('maintext').innerHTML="<img src='../../images/animated_loading.gif' border=0 />Please Wait..";
	}
function showGeoContent(){
	document.getElementById('maintext').innerHTML=ajax.response;
	}
	
	