   <!--
   function checkForm() {
      document.forms[0].email.value = 
                                   RemoveBad(document.forms[0].email.value);
      return true;   
   }
   
   //******************************************************
   //Programmer: NOT ORIGINAL CODE - COMES FROM MICROSOFT
   //Code Source: Microsoft Knowledge Base Article Q252985
   //Description: Removes bad characters.
   //******************************************************
   
   function RemoveBad(strTemp) {
      strTemp = strTemp.replace(/\<|\>|\"|\'|\%|\;|\(|\)|\&|\+/g, "");
      return strTemp;
   }
//-->