function flashez(id){
	new Ajax.Request("/actions,flashez.php",{
		method:'post',
		parameters:'id='+id,
		onSuccess:function(xhr){
			var jsonObj = xhr.responseJSON;
			
			if(jsonObj.error)
				alert(jsonObj.error);
			else
				alert(jsonObj.login+" a bien \351t\351 ajout\351 \341 vos flashes");
		}
	});
}
