// JavaScript Document
/*This Script allows people to enter by using a form that asks for a
UserID and Password*/
function pasuser(form) {
if (form.pass.value=="123654") {              
location="calendar.html" 
} else {
alert("Invalid Password")
}
}
