function CheckIt() {
var cPassword = document.forms[0].password.value;
var cNextPage = "http://www.kirkwoodelectric.com/newconstruction.htm";

if (cPassword == "kebuilders") {
document.location.href = cNextPage;
} else {
alert('Wrong password, please try again');
}
}

