	function display_image(imgname, imgdesc)
	{
		myWindow = window.open("", "Immagine",
			"toolbar=0,location=0,left=0,top=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,copyhistory=0,width=750,height=500");
		myWindow.document.open();
		myWindow.document.write("<HTML><HEAD>");
		myWindow.document.write("<TITLE>Immagine</TITLE>");
		myWindow.document.write("</HEAD><BODY BGCOLOR=FFFFFF TEXT=000000 BACKGROUND='gif/mattoni.gif'>");
		myWindow.document.write("<FORM><CENTER><B><FONT SIZE=2>" + imgdesc + "</FONT></B><BR>");
		myWindow.document.write("<IMG  " + "SRC='" + imgname + "'>");
		<!--myWindow.document.write("<FORM><INPUT TYPE='button' VALUE='Chiudi' " + "onClick='window.close()'></FORM></CENTER>");-->
		myWindow.document.write("</BODY></HTML>");
		myWindow.document.close();
		pause=0
		step=10
		tistopposition=0
		tisleftposition=screen.width-200-10
		endposition=10;
		<!--movewindow();-->

	}
	
function movewindow() {
	if (tisleftposition>=endposition) {
		myWindow.moveTo(tisleftposition,tistopposition)
		tisleftposition-=step
		timer= setTimeout("movewindow()",pause)
	}
	else {
		myWindow.close()
		myWindow = window.open("", "Immagine",
			"toolbar=0,location=0,left=0,top=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,copyhistory=0,width=200,height=120");
		clearTimeout(timer)
	}
}	

