function CheckIt() {
var cPassword = document.forms[0].password.value;


if (cPassword == "northampton") {
document.location.href = "northampton.html";
} 
else if (cPassword == "southampton") {
document.location.href = "southampton_day1/index.htm";
} 
else if (cPassword == "list") {
document.location.href = "elliott/listall.html";
} 
else if (cPassword == "jo") {
document.location.href = "jo.html";
} 
else {
alert('Wrong password, please try again');
}
}

