function AdmitUser()
{
	var username = prompt("Please enter your username:", "");
	// var password = prompt("Please enter your password:", "");
	var TheLists = new Array(3)
	{
		TheLists[0] = "afriend:anonymous";
		TheLists[1] = "Warwick:WhoIsNotGay";
		TheLists[2] = "kaybe:Ramsboticelli";
	}
	for (i = 0; i < TheLists.length; i++)
	{
		if (TheLists[i].indexOf(username) == 0)
		{
			var TheSplit = TheLists[i].split(":");
			var TheUsername = TheSplit[0];
			var ThePassword = TheSplit[1];
			// if (username == TheUsername && password == ThePassword)
			if (username == TheUsername)
			{
				// alert("Welcome, " + username);
				window.location="PhotoGallery.html";
			} else {
				alert("You are persona non-grata! If you are actually a nice person, please email Jonathan for a login to this part of the site.");
			}
		}
	}
}

