
<!-- Hide from old browsers
function verify(){
        marker = false
        checkname = document.pass.passname.value
        checkpass = document.pass.password.value
        fullpass = checkname + " " + checkpass

        users = 18
        userlist = new Array
        userlist[0] = "abowen 941"
        userlist[1] = "mclare 942"
        userlist[2] = "jconnon 943"
        userlist[3] = "ydempsey 944"
        userlist[4] = "rgurrin 945"
        userlist[5] = "ejordan 946" 
        userlist[6] = "fkelly 947"
        userlist[7] = "clyons 948"
        userlist[8] = "vmacmahon 949"
        userlist[9] = "nmcdonald 9410"
        userlist[10] = "smaloney 9411"
        userlist[11] = "mmoran 9412"
        userlist[12] = "gmulcahy 9413"
        userlist[13] = "cobroin 9414"
        userlist[14] = "cokeefe 9415"
        userlist[15] = "domara 9416"
        userlist[16] = "swilson 9417"
        userlist[17] = "lbreslin 9418"

       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.")
        }

}
// -->

