function Module_BuyerRegistration_OnValidate(o){
	if ( o.Title_1.value.length == 0 ){
		alert("Please select an appropriate salutation");
		o.Title_1.focus();
		return false;
	}
	
	if ( o.Name_2.value.length == 0 ){
		alert("Please enter your full name");
		o.Name_2.focus();
		return false;
	}	
	
	if ( o.Email_Address_3.value.length == 0 ){
		alert("Please enter your email address");
		o.Email_Address_3.focus();
		return false;
	}
	
	if ( o.PostCode_5.value.length == 0 ){
		alert("Please enter your postcode");
		o.PostCode_5.focus();
		return false;
	}
	
	if ( o.Daytime_Telephone_Number_6.value.length == 0 ){
		alert("Please enter your daytime telephone number");
		o.Daytime_Telephone_Number_6.focus();
		return false;
	}
	
	if ( o.Alternative_Phone_Number_7.value.length == 0 ){
		alert("Please enter an alternative telephone number");
		o.Alternative_Phone_Number_7.focus();
		return false;
	}
	
	if ( o.Property_to_sell_9.value.length == 0 ){
		alert("Please indicate if you have a property to sell or not");
		o.Property_to_sell_9.focus();
		return false;
	}
	
	if ( o.Locations_Interested_In_10.value.length == 0 ){
		alert("Please enter the locations you are interested in");
		o.Locations_Interested_In_10.focus();
		return false;
	}
	
	if ( o.Tell_us_about_the_property_11.value.length == 0 ){
		alert("Please tell us about the property you are looking to buy");
		o.Tell_us_about_the_property_11.focus();
		return false;
	}
	
	  oCookieManager.StoreFormData();
	  return true;

}