// **************************************************
// Change "guest" to your desired Username below.
// Change "password" to your desired Password below.
// Change the URLs for success and failure to reflect your own.
// **************************************************
function authUser(form) { 
if (form.Username.value=="guest") { 
if (form.Password.value=="password") { 
    // ** Success ** 
      checkCookie();
	location.replace("Login_Auth.html")
} else { 
    // ** Failure **
    location.replace("Login_Invalid.html")
    } 
} else { 
    location.replace("Login_Invalid.html")
    } 
} 