<!--Hide
function validEmail(email) {       				 //VALIDATION OF FORM
	invalidChars = " /:,;"

	if (email == "") {							// Must be filled in
		return false
	}
	for (i=0; i<invalidChars.length; i++) {		// Check to see if it contains illegal characters
		badChar = invalidChars.charAt(i)
		if (email.indexOf(badChar,0)> -1) {
			return false
		}
	}
	atPos = email.indexOf("@",1)				// There must be one "@" symbol
	if (atPos == -1) {
		return false
	}
	if (email.indexOf("@",atPos+1) != -1) {		// And only one "@" symbol
		return false
	}
	periodPos = email.indexOf(".",atPos)
	if (periodPos == -1) {						// And at least one "." after the "@"
		return false
	}
	if (periodPos+3> email.length)	{			// Must be at least 2 characters after the "."
		return false
	}
	

return true;	

}


function valform(form){
  
 
     if (form.Name.value == "") {
            alert("Please enter your name.  Thank you.");
            form.Name.focus();
            return false;
            }
            
     if (form.Remarks.value == "") {
            alert("Please enter your comments or remarks.  Thank you.");
            form.Remarks.focus();
            return false;
            }
            
          
            
       else if (!validEmail(form.email.value)) {
	      alert("Please enter a valid e-mail address.  Thank you.");
	      form.email.focus();
	      return false;
	  		
              }
              
     	
	
       
  }   
  
//End Hide-->

