<!--
			function popUp(FileAllegato, ImgWidth, ImgHeight) {
				ImgWidth	= ImgWidth ;
				ImgHeight = ImgHeight;

				MinWidth	= 158;
				MinHeight = 103;
				MaxWidth	= screen.availWidth;
				MaxHeight	= screen.availHeight;

				PopWidth	= MinWidth;
				PopHeight = MinHeight;

				if (ImgWidth > MinWidth)		PopWidth = ImgWidth;
				if (ImgHeight > MinHeight)	PopHeight = ImgHeight;

				if (PopWidth > MaxWidth)		PopWidth	= MaxWidth;
				if (ImgHeight > MaxHeight)	PopHeight = MaxHeight;

				PopLeft	= (screen.availWidth - PopWidth) / 2;
				PopTop	= (screen.availHeight - PopHeight) / 2;

				window.open(FileAllegato+".htm", "popUp", "width="+PopWidth+",height="+PopHeight+",left="+PopLeft+",top="+PopTop+",scrollbars=0,resizable=no,status=no");
			}
		//-->