function CheckIt() {
var cPassword = document.all.password.value;
var cNextPage = "PBs.htm";
var cWrongPage = "PBPass.htm";

if (cPassword == "swimwins" ) {
document.location.href = cNextPage;
} else {
document.location.href = cWrongPage;
}
}

