// nel file html occorre scrivere:

// <a href="#" onClick="javascript:PopupImage('NomeFileImmagine', larghezzaInPixel, altezzaInPixel); return false;"><img scr="NomeFileImmagine" /></a>



function PopupImage(imageName, ww, wh) { 

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

