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