//global Navigation 
home="./index.php";
airline_hotel="./airline_hotel.php";
china_tours="./china_tours.php";
southeast_asia="./southeast_asia.php";
city_mini_tours="./city_mini_tours.php";
cruises="./cruises.php";
special="./special.php";
contact="./contact.php";
legal="./disclaimer.php";

function GoUrl(name, win) {	
	if (eval(name) == "") {
		alert("No path!");
		return;	
	} else {
		if (win == null) {
			document.location.href = eval(name);
		} else {
			window.open(eval(name), win);
		}
	}
}

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=640,height=680,left = 0,top = 0');");
}
