 objForm = new qForm("FormValidate");
 objForm.required("firstname, lastname, areacode, phoneno1, phoneno2, email, comments, strCAPTCHA");
 objForm.email.validateEmail();
 objForm.email.isEmail() 
 objForm.firstname.description = "First Name";
 objForm.lastname.description = "Last Name";
 objForm.areacode.description = "Area Code";
 objForm.phoneno1.description = "complete Phone Number";
 objForm.phoneno2.description = "complete Phone Number";
 objForm.email.description = "Email Address";
 objForm.comments.description = "Comments";
 objForm.strCAPTCHA.description = "Security Image Code";
 
  var warned = false;
 function countChars(){form = document.FormValidate;comments = form.comments.value;form.char_count.value=comments.length;if(comments.length>319 && !warned){alert('If you are sending a wireless text message\nthe maximum message length of 120 characters\nhas been reached. Please go back and summarize\nyour message.\n\nIf you are NOT sending a text message,\nignore this alert.');warned=true;}}