// JavaScript Document
function checkIt() {
var pswd = document.forms[0].password.value;
var nextPage = "ChurchConf2009.pdf";

if (pswd == "cumc2009") {
	document.location.href = nextPage;
	} else {
	alert('You entered the wrong password.  Please try again');	
	document.forms[0].password.focus();
	}
}



function noenter() {
  return !(window.event && window.event.keyCode == 13); }
