<!-- 
function checkform( thisform ) {

 if (thisform.realname.value == null || thisform.realname.value == "" ) {

      alert ("Please enter your first name.") ;

      thisform.realname.focus() ;

      return false ;
   }
   
 if (thisform.NameOrganization.value == null || thisform.NameOrganization.value == "" ) {

      alert ("Please enter the name of your organization.") ;

      thisform.NameOrganization.focus() ;

      return false ;
   }

 if (thisform.phone.value == null || thisform.phone.value == "" ) {

      alert ("Please enter your telephone number") ;

      thisform.phone.focus() ;

      return false ;
   }
      
//VALIDATE EMAIL   
 if (thisform.email.value == null || thisform.email.value == "" ) {

      alert ("Please enter your email") ;

      thisform.email.focus() ;

      return false ;
   }

	if (!emailvalidation( thisform )) {
      thisform.email.focus() ;
			return false;
	}
      
function emailvalidation(entered)
{

	apos=entered.email.value.indexOf("@");
	dotpos=entered.email.value.lastIndexOf(".");
	lastpos=entered.email.value.length-1;
	if (apos<1 || dotpos-apos<2 || lastpos-dotpos>3 || lastpos-dotpos<2) {
		alert("Enter a valid email address");
		return false;
	}else {
		return true;
	}
}	
//END VALIDATE EMAIL



 if (thisform.fax.value == null || thisform.fax.value == "" ) {

      alert ("Please enter your fax number.") ;

      thisform.fax.focus() ;

      return false ;
   }
 
  if (thisform.ZipCode.value == null || thisform.ZipCode.value == "" ) {
 
       alert ("Please enter your zip code.") ;
 
       thisform.ZipCode.focus() ;
 
       return false ;
   }




 if (thisform.fax.value == null || thisform.fax.value == "" ) {

      alert ("Please enter your fax number") ;

      thisform.fax.focus() ;

      return false ;
   }


	
	return true

}
//  -->