	frmvalidator  = new Validator("frmShortForm","Submit","");
	
	frmvalidator.addValidation("firstname","req","Please enter First Name!");	

	frmvalidator.addValidation("firstname","alphanumeric","Please enter valid First Name!");	

	frmvalidator.addValidation("surname","req","Please enter Surname!");	
	
	frmvalidator.addValidation("surname","alphanumeric","Please enter valid Surname!");
		
	frmvalidator.addValidation("dobday","dontselect=0","Please select date of birth!");

	frmvalidator.addValidation("dobmonth","dontselect=0","Please select month of birth!");

	frmvalidator.addValidation("dobyear","dontselect=0","Please select year of birth!");
	
	frmvalidator.addValidation("gender","dontselect=0","Please select gender!");

	frmvalidator.addValidation("MaritalStatus","dontselect=0","Please select Marital Status!");	

	frmvalidator.addValidation("EmploymentStatus","dontselect=0","Please select Employment Status");	
	
	/*fieldVal1="document.frmShortForm.EmploymentStatus";

	frmvalidator.addValidation("SelfEmployedProofofIncome","checkOnSelect",fieldVal1+"|Self-Employed|Please Select Self employed proof of income");*/

	frmvalidator.addValidation("employersname","req","Please enter Employer's Name!");

	frmvalidator.addValidation("employersname","alphanumeric","Please enter valid Employer's Name!");	
	
	frmvalidator.addValidation("employerspostalcode","req","Please enter Employer's Postal Code!");	
	
	frmvalidator.addValidation("monthlysalary","dontselect=0","Please Enter monthly salary");	
	
	
	frmvalidator.addValidation("YearlyGrossIncome","dontselect=0","Please select Yearly Gross Income");	

	//frmvalidator.addValidation("driving_licence","dontselect=0","Please Enter Licence Status");	
		
	/*fieldVal2="document.frmShortForm.MaritalStatus";

	frmvalidator.addValidation("TotalIncome","checkOnSelect",fieldVal2+"|Married|Please Select Your Spouse Yearly Gross Income");
	
	frmvalidator.addValidation("FirstName1","checkOnSelect",fieldVal2+"|Married|Please Enter Your Spouse name");	

	frmvalidator.addValidation("Surname1","checkOnSelect",fieldVal2+"|Married|Please Enter Your Spouse Surname");	

	frmvalidator.addValidation("dob1","checkOnSelect",fieldVal2+"|Married|Please Select Your Spouse Date of Birth");	

	frmvalidator.addValidation("mob1","checkOnSelect",fieldVal2+"|Married|Please Select Your Spouse Month of Birth");	

	frmvalidator.addValidation("yob1","checkOnSelect",fieldVal2+"|Married|Please Select Your Spouse Date of Year");	

	frmvalidator.addValidation("MaritalStatus1","checkOnSelect",fieldVal2+"|Married|Please Select Your Spouse Marital Status");	

	frmvalidator.addValidation("EmploymentStatus1","checkOnSelect",fieldVal2+"|Married|Please Select Your Spouse Employment Status");	

	frmvalidator.addValidation("TotalIncome","checkOnSelect",fieldVal2+"|LivingTogether|Please Select Yearly Gross Income");
	
	fieldVal_20="document.frmShortForm.EmploymentStatus1";

	frmvalidator.addValidation("SelfEmployedProofofIncome1","checkOnSelect",fieldVal_20+"|Self-Employed|Please Select Your Spouse Self employed proof of income");*/
		
	frmvalidator.addValidation("postcode","req","Please enter Post code");	

	frmvalidator.addValidation("postcode","alphanumeric","Please enter valid Post Code!");			

	//frmvalidator.addValidation("MobileorWorkPhoneNumber","req","Please enter Mobile or Work Phone Number!");

	//frmvalidator.addValidation("MobileorWorkPhoneNumber","ukphone","Mobile or Work Phone Number");
	
	frmvalidator.addValidation("email","req","Please enter Email Address!");

	frmvalidator.addValidation("email","email","Please enter valid Email Address!");

	frmvalidator.addValidation("checkbox2","check2","Please agree with terms & condition!");

	frmvalidator.addValidation("permanentResident","dontselect=0","Please Enter Permanent Resident Right");	

	frmvalidator.addValidation("addressfind","req","Please find your address");

	frmvalidator.addValidation("hometelephone","req","Please enter Home Phone Number");

	frmvalidator.addValidation("hometelephone","ukphone","Home Phone Number");

	/************************************************************************************************/

	date_field="document.frmShortForm.date_field";

	frmvalidator.addValidation("date_field","check_date1","");

	frmvalidator.addValidation("date_field","check_date1","");

	frmvalidator.addValidation("date_field","check_date","");


	
	
