

/*This Script allows people to enter by using a form that asks for a
UserID and Password*/
function pasuser(form) {
if (form.id.value=="david") { 
if (form.pass.value=="david") {              
location="http://skibizcompany.com/ski_member_login_ok.html" 
} else {
alert("Invalid Password")
}
} else {  alert("Invalid UserID")
}
}
//-->




