var password = "ecis2010"

var x = prompt("Enter in the password provided by RHC"," ")

if (x.toLowerCase() == password) {
alert("Access Granted")
location = "thisweek.html"
}

else {
alert("Access Denied")
location = "wrong.html"
}