function apri(img,x,y,xf,yf,titolo){
					 finestra= window.open('prova.htm','nome', 'width=400, height=400, scrollbars, resizable')
					 finestra.resizeTo(xf+50,yf+80)
					 finestra.focus()
					 finestra.document.write('<html><title>'+titolo+'</title><body><img src='+ img + ' width=' + x + ' height=' + y + ' /></body></html>') 
					 finestra.document.close()
					 }
