function Module_MailingList_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.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;
	}
	oCookieManager.StoreFormData();
	return true;
}