function update_general_content_post(ajax_url,id_form,id_div){

$.ajax({
	   type : "POST",
	   url : ajax_url,
	   data : $('#'+id_form).serialize(),	
	   cache: false,
	   scriptCharset: 'ISO-8859-1',
	   
	   beforeSend:function(){
		   $('#'+id_div+'_loading').show();
		},
		error:function(){
			alert('Veuillez activer le javascript sur votre navigateur');
		},
	   success:function(data){
		   $('#'+id_div+'_loading').hide();
		   $('#'+id_div).html(data);
	   }																					
});

}//fin fonction