function AperturaFinestre(NomeImmagine, ww, wh) { 
		
		finestrella = window.open('', 'Dettaglio','width=' + ww +',height=' + wh + ',toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=0,resizable=0'); 
		finestrella.document.write("<HTML><HEAD><\/HEAD>");
		finestrella.document.write("<BODY leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>");
		finestrella.document.write("<IMG SRC='" + NomeImmagine + "'><\/BODY><\/HTML>");
		finestrella.document.close();
		finestrella.focus();
		
	} 

