var rules = new Array(); // stores the validation rules


rules.push("required,name,Please enter your name.");
rules.push("textchars,name,You may only use alpha-numeric characters and the characters .-_'");
rules.push("required,address1,Please enter an address.");
rules.push("textchars,address1,You may only use alpha-numeric characters and the characters .-_'");
rules.push("textchars,address2,You may only use alpha-numeric characters and the characters .-_'");
rules.push("textchars,address3,You may only use alpha-numeric characters and the characters .-_'");
rules.push("required,town,Please enter a town or city.");
rules.push("textchars,town,You may only use alpha-numeric characters and the characters .-_'");
rules.push("required,state,Please enter a state.");
rules.push("textchars,state,You may only use alpha-numeric characters and the characters .-_'");
rules.push("required,zip,Please enter your zip code.");
rules.push("textchars,zip,You may only use alpha-numeric characters and the characters .-_'");
rules.push("required,tel_home,Please enter your home phone number.");
rules.push("telchars,tel_home,For telephone numbers you may only use numbers and the characters ()-+.");
rules.push("required,email,Please enter your email address.");
rules.push("valid_email,email,Please enter a valid email address.");
rules.push("textchars,email,You may only use alpha-numeric characters and the characters .-_'@");
rules.push("required,clubname,Please enter a Pathfinder Club Name.");
rules.push("textchars,clubname,You may only use alpha-numeric characters and the characters .-_'");
rules.push("required,conference,Please enter a Conference.");
rules.push("textchars,conference,You may only use alpha-numeric characters and the characters .-_'");
rules.push("required,union,Please enter a Union.");
rules.push("textchars,union,You may only use alpha-numeric characters and the characters .-_'");
rules.push("required,director,Please enter a Director.");
rules.push("textchars,director,You may only use alpha-numeric characters and the characters .-_'");
rules.push("required,btype,Please select a recognition of investiture.");

