// **************************************************
// Hi Col & Wendy
// **************************************************
// 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=="consulting") { if (form.Password.value=="rg2010") { location="manualsclients.html" } }
else if (form.Username.value=="robnixon") { if (form.Password.value=="rn2010") { location="manualsclients.html" } }
else if (form.Username.value=="genesys") { if (form.Password.value=="gen2010") { location="manualsclients.html" } }
else { location="manuals.html"} 

} 
 
 
