<!--

function checkLogin(form) {
  // see http://www.thesitewizard.com/archive/validation.shtml
  // for an explanation of this script and how to use it on your
  // own website
  
  var correctPassword = "calimar2007";

  // ** START **
  if (form.destination.value !== correctPassword) {
    alert( "Invalid Password. Please Try Again." );
	form.destination.value = "";
    form.destination.focus();
    return false ;
  } else {
	// alert("congratulations");
	toggleDivs("loginPost","loginPre");
  	return false ;
  }
}
//-->/ JavaScript Document
function toggleDivs(showDiv, hideDiv) {
//	if (document.getElementById(showDiv).style.display != "block") {
//		document.getElementById(showDiv).style.display="block";
//	} else {
//		document.getElementById(showDiv).style.display="none";
//	}
	document.getElementById(showDiv).style.display="block"
	document.getElementById(hideDiv).style.display="none"
}