<!-- 
function checkform( thisform ) {

if (thisform.Name.value == null || thisform.Name.value == "" ) {

      alert ("Please enter your Name") ;

      thisform.Name.focus() ;

      return false ;
   }
   
if (thisform.title.value == null || thisform.title.value == "" ) {

      alert ("Please enter your Title") ;

      thisform.title.focus() ;

      return false ;
   }

if (thisform.companyname.value == null || thisform.companyname.value == "" ) {

      alert ("Please enter your Company Name") ;

      thisform.companyname.focus() ;

      return false ;
   }

if (thisform.address.value == null || thisform.address.value == "" ) {

      alert ("Please enter your Address") ;

      thisform.address.focus() ;

      return false ;
   }
if (thisform.city.value == null || thisform.city.value == "" ) {

      alert ("Please enter your City") ;

      thisform.city.focus() ;

      return false ;
   }
	
if (thisform.postalcode.value == null || thisform.postalcode.value == "" ) {

      alert ("Please enter your Postal Code") ;

      thisform.postalcode.focus() ;

      return false ;
   }
if (thisform.country.value == null || thisform.country.value == "" ) {

      alert ("Please enter your Country") ;

      thisform.country.focus() ;

      return false ;
   }
if (thisform.phone.value == null || thisform.phone.value == "" ) {

      alert ("Please enter your Telephone Number") ;

      thisform.phone.focus() ;

      return false ;
   }

if (thisform.fax.value == null || thisform.fax.value == "" ) {

      alert ("Please enter your Fax Number") ;

      thisform.fax.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.email.value )) {

      alert("Enter a valid email address");
      
      thisform.email.focus() ;
	  
	  return false;
	}
      
function emailvalidation(entered)
{
  reg = new RegExp('^([a-zA-Z0-9\\-\\.\\_]+)'+
                   '(\\@)([a-zA-Z0-9\\-\\.]+)'+
                   '(\\.)([a-zA-Z\\.]{2,10})$');
  return reg.test(entered);
}	
//END VALIDATE EMAIL
	

	
	return true

}
//  -->