// JavaScript Document
function otherwindow(popupURL){
	var name = navigator.appName;
	if (name == "Microsoft Internet Explorer"){
	//IE
	var popup = window.open(popupURL,"otherwindow1","width=820,height=650,menubar=yes,toolbar=no,location=0,directories=0,status=no,scrollbars=yes,resizable=yes");
	}
	else {
	var popup = window.open(popupURL,"otherwindow1","width=820,height=650,menubar=yes,toolbar=no,location=0,directories=0,status=no,scrollbars=yes,resizable=yes");
	}
	popup.focus();
}

function TDHwindow(){
	var name = navigator.appName;
	if (name == "Microsoft Internet Explorer"){
	//IE
	var popupTDH = window.open("newhotel/index.html","otherwindow2","width=640,height=650,menubar=yes,toolbar=no,location=0,directories=0,status=no,scrollbars=yes,resizable=yes");
	}
	else {
	var popupTDH = window.open("newhotel/index.html","otherwindow2","width=640,height=650,menubar=yes,toolbar=no,location=0,directories=0,status=no,scrollbars=yes,resizable=yes");
	}
	popupTDH.focus();
}

function focusParent(){
	if( window.opener && !window.opener.closed ){
	window.opener.focus();
	}
	else {
	var name = navigator.appName;
	var URL = "../index.html"
	if (name == "Microsoft Internet Explorer"){
	//IE
	var parent = window.open(URL,"parentwindow","width=965,height=650,menubar=yes,toolbar=yes,location=1,directories=1,status=yes,scrollbars=yes,resizable=yes");
	}
	else {
	var parent = window.open(URL,"parentwindow","width=965,height=650,menubar=yes,toolbar=yes,location=1,directories=1,status=yes,scrollbars=yes,resizable=yes");
	}
	parent.focus();
	}
}