function CheckIt() {
var cPassword = document.forms[1].password.value;
var cNextPage = "thememberspage.html";

if (cPassword == "rollbar" ||
cPassword == "ROLLBAR") {
document.location.href = cNextPage;
} else {
alert('Wrong password, please try again');
}
}

