// *** OM.js ***

function doPW(pw) {
	var userentry = pw;
	userentry = userentry.toLowerCase();
	var thePW="demingarc";
	if (userentry != thePW) {
		alert("Password is incorrect");
		location = "OfficersMembers.htm"; }
	else {
		location = "OM_Detailed.htm"; }
}