/******************************************************************
*******************************************************************
****			This Javascript was written by :        ****
****		          Darren Muloin of Business Pro		****
****		For information on this or other Javascripts    ****
****			  email : bpro@businesspro.bc.ca	****
*******************************************************************
******************************************************************/


//Function to check password.
function checkWord2() {
  //If you remove .toUpperCase() from line below, visitor must type
  //password n all uppercase letters, or it won't be accepted.
  if (document.pform2.pword2.value.toUpperCase() == "160440") {
    location.href="http://www.oisd.ca/members/members.htm" 
  }else{
    alert ("Password Incorrect")
  }
}
