// **************************************************
// Hi Nick and Marissa
// **************************************************
// To add accounts to this, just copy the entire line 
// and change the username and password. Remember to 
// keep == together and to use "" to surround the values.
// **************************************************
function authUser(form) { 
if (form.username.value== "" ) { if (form.password.value== "" ) { location="index.asp?invalid=y" } }
else if (form.username.value==form.password.value) { { location="faq.asp" } }

else { location="index.asp?invalid=y"} 

} 
 
 