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.Telephone_Number_6.value.length == 0 ){
			alert("Please enter your Telephone Number");
			o.Telephone_Number_6.focus();
			return false;
		}
		
			if ( o.Where_did_you_hear_about_us_7.value.length == 0 ){
			alert("Please select how you heard about us");
			o.Where_did_you_hear_about_us_7.focus();
			return false;
		}	
		
		if ( o.Comments_8.value.length == 0 ){
			alert("Please enter your comments");
			o.Comments_8.focus();
			return false;
		}
		
		
		
		
		oCookieManager.StoreFormData();
	}catch(e){
		alert("This was a problem completing your request, please contact the agent");
		return false;
	}
	  return true;
}