		  function play_image(img, desc)
			{
				if (desc == "0") {
					html = '<html>\n<head>\n<title>Image</title><meta http-equiv="Pragma" content="no-cache">\n</head>\n<body onload="window.focus();" leftmargin="0" marginwidth="0" topmargin="0" marginheight="0">\n<center>'+img+'"\n\n'+img+'</center>\n\n\n<center><a href="javascript:window.close();">chiudi</a></center></body>\n</html>';
					popupImage = window.open('','nome','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=yes,resizable=0');
				}
				else
				{
					imm = new Image;
					imm.src = (img);
					html = '<html>\n<head>\n<title>Image</title><meta http-equiv="Pragma" content="no-cache">\n</head>\n<body onload="window.focus();" leftmargin="0" marginwidth="0" topmargin="0" marginheight="0">\n<center><img src="'+img+'" border="0" name="imageTest" onLoad="window.resizeTo(document.imageTest.width+14,document.imageTest.height+82)"></center>\n\n\n<center><a href="javascript:window.close();">chiudi</a></center></body>\n</html>';
					X=(screen.width/2)-(parseInt(imm.width)/2)
					Y=(screen.height/2)-(parseInt(imm.height+41)/2)
					popupImage = window.open('','nome','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0, top='+Y+',left='+X+'');
				}
				popupImage.document.open();
				popupImage.document.write(html);
				popupImage.document.close()

			};

