<!--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){
whatState = form.State.selectedIndex  
 
     if (form.First_Name.value == "") {
            alert("Please enter your first name.  Thank you.");
            form.First_Name.focus();
            return false;
            }
            
     if (form.Last_Name.value == "") {
            alert("Please enter your last name.  Thank you.");
            form.Last_Name.focus();
            return false;
            }
            
     if (form.Address.value == "") {
            alert("Please enter your Street or PO Box Address.  Thank you.");
            form.Address.focus();
            return false;
            }
            
     if (form.City.value == "") {
            alert("Please enter your City.  Thank you.");
            form.City.focus();
            return false;
            }
         
          
     if (form.State.options[whatState].value == "") {
             alert("Please enter your state. If you are not from the United States, then select 'Not US' from the option list.  Thank you.");
             form.State.focus();
             return false;
             } 
             
     if (form.Zip_Code.value == "") {
                 alert("Please enter your Zip or Postal Code.  Thank you.");
                 form.Zip_Code.focus();
                 return false;
            }   
            
     if (form.Country.value == "") {
            alert("Please enter your Country.  Thank you.");
            form.Country.focus();
            return false;
            }
            
            
            
       else if (!validEmail(form.email.value)) {
	      alert("Please enter a valid e-mail address.  Thank you.");
	      form.email.focus();
	      return false;
	  		
              }
              
     	else if (form.Requested_Info.value == "")  {
     		alert("Please indicate what information you would like us to send to you.  Thank you.");
     		form.Requested_Info.focus();
     		return false;
     		
     		}
     	else  { 
     	
     	alert("Thank you, for completing our form, we will try to get this information to you as soon as possible.");
     	return true;
     	
     	
	        
	}
	
       
  }   
  
//End Hide-->

