function dettaglio(TheImage) {
floating = window.open("", "dettaglio", "width=620,height=510,resizable=1");
if (floating != null) {  
        if (floating.opener == null) {
        floating.opener = self;               }
        floating.location.href = TheImage;
        floating.focus();
        }
 }