function check_input(field){txt="The data you have entered appears to be invalid, check the messages below on how to fix the problem.\n\n";txt_length=txt.length;if(field.user.length>20||field.user.length<3||field.user.value==0){txt+="- You have not entered your username correctly. (Max chars 20)\n";}if(field.email.length>85||field.email.length<1||field.email.value==0){txt+="- You have not entered an email address correctly. (Max chars 85)\n";}if(field.gender.value!='male'&&field.gender.value!='female'||field.gender.value==0){txt+="- You must pick a gender which is either Male or Female.\n";}if(field.oneaccount.checked==false){txt+="- You must agree to the Terms of Service before you can sign up.\n";}if(field.security_try.length<1||field.security_try.value==0){txt+="- You must enter the shown security code.";}if(txt.length>txt_length){alert(txt);return false;}else{return true;}}
