function CheckIt() {
	var cPassword = document.forms[0].password.value;
	var cNextPage = "sponsorships.php";
	
	if (cPassword == "stars" ||
	cPassword == "dpi2150") {
	document.location.href = cNextPage;
	} else {
	alert('Wrong password. Please try again.');
	}
}
