﻿function CheckIt() {
var cPassword = document.forms[0].password.value;
var cNextPage = "page1.htm";

if (cPassword == "eluaho25" ||
cPassword == "shorty") {
document.location.href = "newsletter.htm";
} else {
alert('The page you are requesting requires a password.  If you are an Elua Village Homeowner please contact the Homeowners Office.  The password you used is incorrect.');
}
}