// **************************************************
// The Rotary Club of Woy Woy Inc.
// Javascript for Authorising Username and Password
// **************************************************

function authUser(form) { 
if (form.Username.value=="rcww1950") { 
if (form.Password.value=="everglades") { 
    location="directory.html" 
} else { 
    location="unauthorised.html"
    } 
} else { 
    location="unauthorised.html"
    } 
} 