submitcount=0;function feedbackformvalidate(formobject){var f=formobject||document.feedbackform;var c,m,v;v=sval(c=f.First);if(v.length==0)return abort(c,"Enter the first name for the Contact Info.");if(Check_Name_Field(c));else return false;v=sval(c=f.Last);if(v.length==0)return abort(c,"Enter the last name for the Contact Info.");if(Check_Name_Field(c));else return false;v=sval(c=f.Email);if(v.length==0)return abort(c,"Enter your email address.");if(Check_EmailAddress_Field(c));else return false;if(0==v.length)return true;v=sval(c=f.phone);if(v.length>0){if(Check_PhoneNumber_Field(c));else return false;}
v=sval(c=f.resid);if(v.length>0){if(Check_Resid_Field(c));else return false;}
v=sval(c=f.comments);if(v.length==0)return abort(c,"You must enter a comment or question.");if(Check_Comment_Field(f.comments));else return false;c=f.submit;if(submitcount>0){return abort(c,"If you cannot seem to get beyond this page, please reload the page and try again.");}
++submitcount;return true;}