/* Function to handle password protection  */

function admitTimes()  {
   var pWord = document.form1.pWord.value.toUpperCase();
   var page = document.form1.page.value;

 if (page=="seattletimes" && pWord=="EQUINOX") 
	window.location="seattletimes.shtml"; 
 else  
	alert ("Sorry! That password is not correct!"); 
}


