<!--
function check() {
        var checkVal="";
        for (i=0; i<document.passForm.pass.value.length; i++) {
           checkVal += document.passForm.pass.value.charCodeAt(i);
        }
        if (checkVal != "1161019799104651051144853" ) {
		//teachAir05
          document.passForm.sub.value = "Try again";
          alert("Incorrect password! Please try again.") }
        else {
          document.passForm.sub.value = "Accepted"
          document.location=("memb/main.shtml"); 
        }
}
// -->