// *** pw1.js ***

function doPW(pw) {
	var userentry = pw.value;
		userentry = userentry.toLowerCase();
	var thePW="dollarsign";
	if (userentry != thePW) {
		alert("Password is incorrect");
		location = "Main.htm"; }
	else {
		location = "Finance.htm"; }
}
