		// Chiama l'Url della risorsa aggiungendo l'elemento(area) selezionata
		function getResource(pHref,pArea)
		{
			top.location    = pHref + "&mItem=" + pArea
		}
		// Resize dell'IFRAME
		function reSize()
		{
			
			if (document.all("ifrm"))
			{
			try{	
				var oBody	=	ifrm.document.body;
				var oFrame	=	document.all("ifrm");
						
				oFrame.style.height = oBody.scrollHeight + (oBody.offsetHeight - oBody.clientHeight);
				oFrame.style.width = oBody.scrollWidth + (oBody.offsetWidth - oBody.clientWidth);
			}
				//An error is raised if the IFrame domain != its container's domain
			catch(e)
			{
			//window.status =	'Error: ' + e.number + '; ' + e.description;
			}
			}
		}
		function AddItemToNavigationBar(sItem)
		{
			oNavigation.innerHTML = oNavigation.innerHTML + sItem
		}
