function openWindow(myLink,windowName)
{
	if(! window.focus)return;
	var myWin=window.open("",windowName,"height=350,width=316,dependent=yes,scrollbars=yes");
	myWin.focus();
	myLink.target=windowName;
}

function openMapWindow(myLink,windowName,w,h)
{
	if(! window.focus)return;
	var myWin=window.open(myLink,windowName,"height="+h+",width="+w+",dependent=yes,scrollbars=no");
	myWin.focus();
}
function setroomtype(roomtype)
{
	form   = document.checkavail.preferred;
	lenght = form.options.length
	for(i=0;i<lenght;i++)
	{
	if(form.options[i].value == roomtype){break;}
	}
	form.selectedIndex = i;
}
function OpenNewWindow(http)
{
	window.open(http, 'emailform', 'width=640,height=400,resisable=yes,scrollbars=yes');
}


function MM_displayStatusMsg(msgStr) { //v1.0
  status=msgStr;
  document.MM_returnValue = true;
}

function protector(mouseevent) {
if (navigator.appName == 'Netscape' && (mouseevent.which == 2 || mouseevent.which == 3))
return false;
else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)) {
alert("All contents in this website are copyright (c) by Asia Web Direct. All rights reserved worldwide. DO NOT COPY! Thank you");
return false;
} else return true;
}
document.onmousedown=protector;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=protector;
	
function clp_clear() {
var content=window.clipboardData.getData("Text");
if (content==null) {
window.clipboardData.clearData();}
setTimeout("clp_clear();",1000);}