

  var frmvalidator  = new Validator("Form1");
  frmvalidator.addValidation("company_name","req","Please enter your Company Name");
  frmvalidator.addValidation("company_name","maxlen=50",
	"Max length for Company Name is 50 charcters");

  
  frmvalidator.addValidation("company_domain", "req", "Please enter your Company's Web address");
  
  frmvalidator.addValidation("address1", "req", "Please provide us with your first line of Address");
  
  frmvalidator.addValidation("telephone_no", "req", "Please enter a contact telephone number");
  frmvalidator.addValidation("telephone_no", "numeric")
  frmvalidator.addValidation("telephone_no", "maxlen=12", "Please enter a valid telephone number");
  
  frmvalidator.addValidation("postcode", "req", "Please include your Postcode");
  
  frmvalidator.addValidation("name", "req", "Please provide a Contact Name");
  
  frmvalidator.addValidation("email","maxlen=50");
  frmvalidator.addValidation("email","req", "Please Provide us with a Email Address");
  frmvalidator.addValidation("email","email"); 
  
  frmvalidator.addValidation("what_the_organisation_does", "req", "Please provide us with a Company Descripton");
  
  frmvalidator.addValidation("general_full_time", "req", "Please provide us with the number of you full time staff");
  frmvalidator.addValidation("general_full_time", "numeric");
  
  frmvalidator.addValidation("purchasing_full_time", "req", "Please provide us with the number of you full time staff");
  frmvalidator.addValidation("purchasing_full_time", "numeric");

  frmvalidator.addValidation("design_full_time", "req", "Please provide us with the number of you full time staff");
  frmvalidator.addValidation("design_full_time", "numeric");

  frmvalidator.addValidation("laboratory_inspection_full_time", "req", "Please provide us with the number of you full time staff");
  frmvalidator.addValidation("laboratory_inspection_full_time", "numeric");
  
  frmvalidator.addValidation("quality_control_full_time", "req", "Please provide us with the number of you full time staff");
  frmvalidator.addValidation("quality_control_full_time", "numeric");
  
  frmvalidator.addValidation("manufacture_production_full_time", "req", "Please provide us with the number of you full time staff");
  frmvalidator.addValidation("manufacture_production_full_time", "numeric");

  frmvalidator.addValidation("service_provision_full_time", "req", "Please provide us with the number of you full time staff");
  frmvalidator.addValidation("service_provision_full_time", "numeric");

  frmvalidator.addValidation("service_provision_full_time", "req", "Please provide us with the number of you full time staff");
  frmvalidator.addValidation("service_provision_full_time", "numeric");
  
  frmvalidator.addValidation("stores_warehousing_despatch_full_time", "req", "Please provide us with the number of you full time staff");
  frmvalidator.addValidation("stores_warehousing_despatch_full_time", "numeric");

  frmvalidator.addValidation("installation_maintenance_servicing_full_time", "req", "Please provide us with the number of you full time staff");
  frmvalidator.addValidation("installation_maintenance_servicing_full_time", "numeric");
  
  frmvalidator.addValidation("other_full_time", "req", "Please provide us with the number of you full time staff");
  frmvalidator.addValidation("other_full_time", "numeric");


  
  


  