function openNewWindow(pageToOpen)
{
mhw=open(pageToOpen,"mhw","scrollbars=yes,toolbar=no,resizable=yes");
mhw.document.close();
mhw.focus();
}
function promptPwd()
{
pwd=prompt("Please enter the correct password to access the Members Only page:","");
if (pwd == "apch") {
  location.replace("members83.htm");
 } 
 else {
 	alert("Password incorrect\nCheck case");
 }
}
function trim(strText) { 
	// This will get rid of leading and trailing spaces.
	// Found at http://developer.irt.org/script/1310.htm 
	// 		get rid of leading spaces 
	while (strText.substring(0,1) == ' ') 
		strText = strText.substring(1, strText.length);
	// 		get rid of trailing spaces 
	while (strText.substring(strText.length-1,strText.length) == ' ')
		strText = strText.substring(0, strText.length-1);
	return strText;
} 
