function authUser(form) { 
if (form.Username.value=="Dean") { 
if (form.Password.value=="Dean010309") { 
    location="/Dean/album2/index.htm" 
} else { 
    location="unauthorized.html"
    } 
} else { 
    location="unauthorized.html"
    } 
} 