function popup_window(picName)
{
popw=open("","DisplayWindow","toolbar=no,location=no,status=no,directory=no,menubar=no,scrollbars=yes,resizable=yes,width=800,height=600");
var line1
line1="<img src='" + picName + "' border='2'>";
popw.document.write("<html>");
popw.document.write("<head>");
popw.document.write("<title>www.atleisuresiam.com</title>");
popw.document.write("</head>");
popw.document.write("<body bgcolor='#5FC3E6'>");
popw.document.write("<div align='center'>");
popw.document.write(line1);
popw.document.write("</div>");
popw.document.write("</body>");
popw.document.write("</html>");
}

function openwindow(thelocation){
temploc=thelocation
if (!(window.resizeTo&&document.all)&&!(window.resizeTo&&document.getElementById)){
window.open(thelocation)
return
}
win2=window.open("","","scrollbars")
win2.moveTo(0,0)
win2.resizeTo(1024,768)
win2.location=temploc
}

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=800,height=600,left = 112,top = 84');");
}
function popUp_room(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=700,height=650,left = 112,top = 84');");
}

function checkEmail() {
if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(form1.txt_email.value)){
return (true);
}
form1.txt_email.focus();
form1.txt_email.select();
alert("Invalid E-mail Address! Please re-enter.");
return (false);
}