<!--//
/*This Script allows people to enter by using a form that asks for a
UserID and Password*/
function pasuser(form) {
if (form.id.value=="wales") { 
if (form.pass.value=="1234") {              
location="client_page.html" 
} else {
alert("Invalid Password")
}
} else {  alert("oops!!! username/password combination wrong")
}
}
//-->