function checkPswd() {
var confirmPassword = "PSPFALL20";
var password = document.getElementById("pswd").value;
var res = password.toUpperCase();
if (res == confirmPassword) {
window.location.assign("page10.html");
event.preventDefault();
}
else{
alert("Invalid Promo Code");
event.preventDefault(false);
}
}