<!--
function validateEmail(elm)
    {

        // ****************************************************************************
	    // VARIBLE USED TO TEST FOR VALID NUMERS AND STRINGS
        // *****************************************************************************
        var pattern = /^[a-zA-Z0-9._\-]+\@[a-zA-Z0-9\-]+\.([a-zA-Z]{2,3})$/;
        
        if (pattern.test(elm)) 
            {
            return true;
            }
        else 
            {
            return false;
            }
    }
    
	function Validate() 
	{
	
	//check to see that the form has valid entries
	if (frmContact.pollen_captcha.value.length==0) {
			alert ("Please enter the CAPTCHA.");
			return false;
		} 
		
	//check to see that the form has valid entries
	if (frmContact.message.value.length==0) {
			alert ("Please add your comments.");
			return false;
		} 
		
	//check to see that the form has valid entries
	if (frmContact.name.value.length==0) {
			alert ("Please enter your name.");
			return false;
		} 
	
	
	//check to see that the form has valid entries
	if (frmContact.email.value.length==0) {
			alert ("Please enter a valid e-mail address.");
			return false;
		} 
		
	
	if (validateEmail(frmContact.email.value)==false) {
			alert ("Please enter a valid e-mail address.");
			return false;
		} 
		
	}
// -->

