function authUser(form) { 
if (form.Username.value=="guest") { 
if (form.Password.value=="guest") { 
    location="auth/index.htm" 
} else { 
    location="UnAuthorized.htm"
    } 
} else { 
    location="UnAuthorized.htm"
    } 
}  