function CheckIt() {
var cPassword = document.forms[0].password.value;
var cNextPage = "access.html";

if (cPassword == "ICLP09" ||
cPassword == "ICLP08") {
document.location.href = cNextPage;
} else {
alert('Wrong password, please try again');
}
}