// Alumni Registration Require Fields, alumni_registration.html
var checkeritems=[
{name:"First_Name",type:"T",rule:"-",message:"You must supply a first name."},
{name:"Last_Name",type:"T",rule:"-",message:"You must supply a last name."},
{name:"birth_month",type:"S",rule:"-",message:"Please provide the month of your birth."},
{name:"birth_day",type:"S",rule:"-",message:"Please provide the day of your birth."},
{name:"birth_year",type:"S",rule:"-",message:"Please provide the year of your birth."},
{name:"ssn1",type:"T",rule:"N3",message:"Please enter the first portion of your social security number.;The first portion of your social security number cannot contain alpha characters.;The first portion of your social security number has less then 3 digits."},
{name:"ssn2",type:"T",rule:"N2",message:"Please enter the second portion of your social security number.;The second portion of your social security number cannot contain alpha characters.;The second portion of your social security number has less then 2 digits."},
{name:"ssn3",type:"T",rule:"N4",message:"Please enter the third portion of your social security number.;The third portion of your social security number cannot contain alpha characters.;The third portion of your social security number has less then 4 digits."},
{name:"pareacode",type:"T",rule:"N3",message:"Sorry but the home phone number must have an area code.;The area code cannot contain alpha characters.;Your area code has less then 3 numbers."},
{name:"pphone1",type:"T",rule:"N3",message:"Sorry but the home phone number must have a prefix.;The phone prefix cannot contain alpha characters.;Your phone prefix has less then 3 numbers."},
{name:"pphone2",type:"T",rule:"N4",message:"Sorry but the home phone number cannot be empty.;The phone number cannot contain alpha characters.;Your phone number has less then 4 numbers."},
{name:"sareacode",type:"U",rule:"N3",group:"A",message:"Sorry but the cell phone number must have an area code.;The area code cannot contain alpha characters.;Your area code has less then 3 numbers."},
{name:"sphone1",type:"U",rule:"N3",group:"A",message:"Sorry but the cell phone number must have a prefix.;The phone prefix cannot contain alpha characters.;Your phone prefix has less then 3 numbers."},
{name:"sphone2",type:"U",rule:"N4",group:"A",message:"Sorry but the cell phone number cannot be empty.;The phone number cannot contain alpha characters.;Your phone number has less then 4 numbers."},
{name:"email1",type:"T",rule:"E",message:"Sorry but you must provide an email address.;Your email is not a proper email address."},
{name:"address1",type:"T",rule:"-",message:"Sorry but you must provide a street address."},
{name:"city",type:"T",rule:"-",message:"Sorry but you must provide a city name."},
{name:"state",type:"S",rule:"-",message:"Sorry but you must select a state."},
{name:"zip",type:"T",rule:"Z",message:"Sorry but you must provide the zip code.;The zip code cannot contain alpha characters.;Your zip code has less then 5 numbers."},
{name:"campusattended",type:"T",rule:"-",message:"Please provide the campus you attended."},
{name:"campusregister",type:"T",rule:"-",message:"Please choose a campus to register with."},
{name:"degreetype",type:"S",rule:"-",message:"Please choose a degree type."},
{name:"major",type:"T",rule:"-",message:"Please provide area of study."},
{name:"grad_month",type:"S",rule:"-",message:"Please choose the graduation month."},
{name:"grad_year",type:"S",rule:"-",message:"Please choose the graduation year."}
];