function CheckIt() {
var cPassword = document.forms[0].password.value;
var cNextPage = "secure_home.htm";

if (cPassword == "0911" ||
cPassword == "0911") {
document.location.href = cNextPage;
} else {
alert('Wrong password, please try again');
}
}
