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

