
<!-- Hide from old browsers
function verify(){
        marker = false
        checkname = document.pass.passname.value
        checkpass = document.pass.password.value
        fullpass = checkname + " " + checkpass

        users = 11
        userlist = new Array
        userlist[0] = "dclooney 931"
        userlist[1] = "tconway 932"
        userlist[2] = "lculligan 933"
        userlist[3] = "lcurran 934"
        userlist[4] = "ddoran 935"
        userlist[5] = "nfitzpatrick 936" 
        userlist[6] = "mhill 937"
        userlist[7] = "gkelly 938"
        userlist[8] = "pmooney 939"
        userlist[9] = "nmurphy 9310"
        userlist[10]= "ooreilly 9311"
       for (i = 0; i < users; i++){
                if (fullpass == userlist[i]){
                        opener.location = "information_form.htm"
                        marker = true
                }
                        
        }
        if (marker == true){
                window.close()
        }
        else {
                alert("You entered the wrong name or password. Please re-input your information.")
        }

}
// -->

