function Module_Contact_OnValidate(o){
try{
		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.match(/^[\w-+\.]+@[\w-+\.]+[\w-]$/))
		{
			alert("Please enter your email address");
			return false;
		}
		
		
		if ( o.PostCode_5.value.length == 0 ){
			alert("Please enter your postcode");
			o.PostCode_5.focus();
			return false;
		}

		if ( o.Comments_7.value.length == 0 ){
			alert("Please enter your comments");
			o.Comments_7.focus();
			return false;
		}
		
		//at least one telephone number required
		if ( o.Telephone_Number_6.value.length == 0){
			alert("Please provide your telephone number so that we can contact you");
			o.Telephone_Number_6.focus();
			return false;
		}
		
		oCookieManager.StoreFormData();
	}catch(e){
		alert("This was a problem completing your request, please contact the agent");
		return false;
	}
	  return true;
}