function chambersLink(){
	var answer = prompt("Please enter your password.");
	
	if (answer == "placetostay")
	{
		window.location = "../prophets-chambers.pdf";
	}
	else
	{
		alert("Sorry, the password you entered is incorrect.");
	}
}

function churchesLink(){
	var answer = prompt("Please enter your password.");
	
	if (answer == "placetopreach")
	{
		window.location = "../supporting-churches.pdf";
	}
	else
	{
		alert("Sorry, the password you entered is incorrect.");
	}
}

