

/*This Script allows people to enter by using a form that asks for a
UserID and Password*/
function pasuser(form) {
if (form.id.value=="jlc") { 
if (form.pass.value=="jlc1") {              
location="jc_Reqdatabase_main.htm" 
} else {
alert("Invalid Password")
}
} else {  alert("Invalid UserID")
}
}
//-->
