<!-- Begin to hide script contents from old browsers
function formValidate(formobj)
   {
   // Array of all feild names to be checked
   var fieldRequired = Array("name","emailAddress","department","building","campus");
   // Array of all correlating descriptions to the previous array (What will be displayed by the alert window)
   var fieldDescription = Array("Your Name","Your E-mail Address","Department/Division Name","Building","Campus");
   
   // Make sure all of the required fields have been filled in
   if (!formCheck(formobj, fieldRequired, fieldDescription))
      return(false);

   return(true);
   }
// End the hiding here -->
