function PRsubmit() {
	var location;
	var password;
	password=this.document.PRenter.PRpassword.value;
	if (password=="") {
		alert("Please enter your password in the field labeled \"Project Password,\" then click GO.");
	}
	else {

		location="/projectreview/" + password + ".asp";
		//document.PRpassword.action=location;
		document.getElementById("PRenter").action=location;
		//document.PRpassword.submit();
		document.getElementById("PRenter").submit();
	}
}