function run() {
	$.post('/index/mail/format/json',  
			$('#prevent_form').serialize(),
			function(data) {		
				if(data.valid) {
					$.validationEngine.closePrompt('.formError',true);
					$('#textFormsend').html(data.message);
					$('#ti_email').attr('value', '');
					$('#ti_email').focus();
					$('#textFormsend').focus();
					$.fn.colorbox({width:"50%",initialWidth: "0",
								initialHeight: "0",opacity: 0.5, inline:true, href:"#textFormsend"})
				}
				else {
					$.validationEngine.buildPrompt("#ti_email","Veuillez vérifier votre adresse","error");
				}
		});
}
