// JavaScript Document

/*This Script allows people to enter by using a form that asks for a
UserID and Password*/
function pasuser(form) {
if (form.id.value=="a4b") { 
if (form.pass.value=="project123") {              
location="index2.html" 
} else {
alert("Piglet says that's an incorrect password, try again.")
}
} else {  alert("Piglet says that's an incorrect UserID, try again.")
}
}

