
      <!-- 
       function validateEmail(TheForm,TheField,TheValue){
         if(TheValue != ""){
           at=TheValue.indexOf('@',0);
           if (TheValue == -1 || TheValue.indexOf('.',at) == -1) {
              return false;
           }
         }
         return true;
       }

       function emailError(TheForm,TheField,TheValue){
         alert("Please enter a valid email address in the username field.");
       }
	   
	   function validateEmail(TheForm,TheField,TheValue){
        if(TheValue != ""){
          at=TheValue.indexOf('@',0);
          if (TheValue == -1 || TheValue.indexOf('.',at) == -1) {
           return false;
          }
        }
        return true;
        }

        function emailError(TheForm,TheField,TheValue){
          alert("Please enter a valid email address in the username field.");
        }
   // End Validation.js -->
