
	var comLibsPath = "../librerie_comuni/";

	function superoggetto(id) {

		$.post(comLibsPath+"call/openObj.call.php",{ 
       			id: id
     		}, function(data) {

			$("#popup").remove();
			$('<div id="popup"></div>').insertBefore('#container');
			$("#popup").dialog({ width: 600, resizable: true, autoOpen: true });
			$("#popup").dialog('option','title','Risorse');
			$("#popup").html(data);

			$.post(comLibsPath+"call/getObjName.call.php",{ 
       				id: id
     			}, function(objName) {

				$("#popup").dialog('option','title',objName);
 			});
 		});
	}

	function homeObj(id) {

		jQuery.post(comLibsPath+"call/openObj.call.php",{ 
       			id: id
     		}, function(data) {

			jQuery("#popup").remove();
			jQuery('<div id="popup"></div>').insertBefore('#container');
			jQuery("#popup").dialog({ width: 600, resizable: true, autoOpen: true });
			jQuery("#popup").dialog('option','title','Risorse');
			jQuery("#popup").html(data);

			jQuery.post(comLibsPath+"call/getObjName.call.php",{ 
       				id: id
     			}, function(objName) {

				jQuery("#popup").dialog('option','title',objName);
 			});
 		});
	}

