function verifyChapel()
{
	msg = "Click OK to send this information via email to the Coordinator.\n\n" +
	      "Click Cancel to cancel.\n\n" 
	if (confirm(msg))
		{
			alert("The Coordinator will be contacting you shortly.\n\nClick OK to continue.\n\n");
			return true;
		}
		else
			return false;
}

