function Validate()
{
	var x = prompt("Enter the password: ", "");
	if (x == password) {
		document.location = "MembersOnlyContent.htm";
	} else {
		document.location = "badpassword.htm";
	}
}
