	function caricaPagina(div, page, id){
		$.post(page, { id: id },
			function(data){
				$("#"+div).html(data);
			}
		);
	}