function call_moncompte(div_id,action){
	$(function() {
		var moncompte_data = {
			div_id:div_id,
			action:action
		};
		var file_path = "../../module/moncompte/index.php";
		$.post(file_path, moncompte_data, function(moncompte_content){
			$("#"+div_id).html(moncompte_content);
		});
	
	});
}
