function show_descript(id){

	$.post('inc/details-formation.php', 
		{id_form:id,act:'1'},
		function(data){
			$("#descript_"+id).html(data);
		}
	);

	
}
function hide_descript(id){

	$.post('inc/details-formation.php', 
		{id_form:id,act:'0'},
		function(data){
			$("#descript_"+id).html(data);
		}
	);
}

function show_descript_intervenant(id){

	$.post('inc/details-intervenant.php', 
		{id_form:id,act:'1'},
		function(data){
			$("#descript_"+id).html(data);
		}
	);

	
}
function hide_descript_intervenant(id){

	$.post('inc/details-intervenant.php', 
		{id_form:id,act:'0'},
		function(data){
			$("#descript_"+id).html(data);
		}
	);
}