// Verify if a real person using form.
// nododos = the form input name  pw2 = the password

function check_real(form) {
nododos = form.nododos.value;
pw2 = "stoat";

if (nododos != pw2) {
alert ("\nYou did not enter the password. Or did so incorrectly.\nPlease try again.")
return false;
}
else return true;
}