
<!-- Hide from old browsers
function verify(){
        marker = false
        checkname = document.pass.passname.value
        checkpass = document.pass.password.value
        fullpass = checkname + " " + checkpass

        users = 25
        userlist = new Array
        userlist[0] = "cbarnes 961"
        userlist[1] = "cbarry 962"
        userlist[2] = "gcoleman 963"
        userlist[3] = "gcollins 964"
        userlist[4] = "rcondon 965"
        userlist[5] = "bcorcoran 966" 
        userlist[6] = "bderrane 967"
        userlist[7] = "mdoyle 968"
        userlist[8] = "ldunne 969"
        userlist[9] = "rfitzgerald 9610"
        userlist[10] = "mharkin 9611"
        userlist[11] = "ehickey 9612"
        userlist[12] = "cleane 9613"
        userlist[13] = "elynch 9614"
        userlist[14] = "nmartin 9615"
        userlist[15] = "tmulcahy 9616"
        userlist[16] = "mofarrell 9617"
        userlist[17] = "rohalloran 9618"
        userlist[18] = "moleary 9619"
        userlist[19] = "jomahoney 9620"
        userlist[20] = "bosullivan 9621"
        userlist[21] = "lquill 9622"
        userlist[22] = "predmond 9623"
        userlist[23] = "jryan 9624"
        userlist[24] = "owalsh 9625" 
       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.")
        }

}
// -->

