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.Home_Telephone_Number_6.value.length == 0 && o.Mobile_Telephone_Number_7.value.length == 0 ){
			alert("Please provide at least one telephone number so that we can contact you");
			o.Home_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;
}