<!--
function ShowMembership()
	{
	var iReturn = 0;
	var szPassword = "FALCON";
	var szAttempt = prompt("What was our school mascot?","");

	if (szAttempt.toUpperCase() == szPassword)
		{
		alert("You must have gone to Fairmont East!");
		navigate("members.htm");
		}
	else
		{
		alert("No, that's not it ... are you a spy from Fairmont West?");
		}
	}
-->

