function CheckIt() {var cPassword = document.forms[0].password.value;var cNextPage = "sub_pages/spec_sheets.html";if (cPassword == "secret" ||cPassword == "michigan") {document.location.href = cNextPage;} else {alert('Wrong password, please try again');}}