function send_mailing()
{
	var data = $("#mailing").serialize();
	$.ajax({
		url: 'send_mailing.php',
		type: 'post',
		data: data,
		success: function message(response) {
			if (response.match('Information has been sent')) {
				$("#mailing")[0].reset();
			}
			alert(response);
		}
	})
}


