var CurrWindow=null;
var foto1 = null;

function Controlla(img, nomefinestra){
  if((foto1.width!=0)&&(foto1.height!=0)){
    viewimage(img, nomefinestra);
  }
  else{
    funzione="Controlla('"+img+"')";
    intervallo=setTimeout(funzione,20);
  }
}

function showimage(nomefile, nomefinestra){
  foto1= new Image();
  foto1.src=(nomefile);
  Controlla(nomefile,nomefinestra);
}

function viewimage(nomefile, nomefinestra)
{   
    stringa="directories=no, toolbar=no, location=no, status=no, menubar=no, scrollbars=no, resizable=no, width="+foto1.width+", height="+foto1.height;
    
    if (CurrWindow !=null)
        CurrWindow.close();  
    
     strHtml = '<HTML>\n'+
               '<HEAD>\n'+
               '<TITLE>'+nomefinestra+'</TITLE>\n'+
               '</HEAD>\n'+
               '<BODY style="margin:0;">\n'+
               '<CENTER>'+
               '<IMG SRC="'+nomefile+'" BORDER="0" NAME="imageTest" ID="imageTest">'+
               '</CENTER>\n</BODY>\n</HTML>';
    
    //CurrWindow = window.open(nomefile,"nuovafinestra","width="+foto1.width+", height="+foto1.height);
    CurrWindow = window.open(nomefile,"nuovafinestra",stringa);
    CurrWindow.document.write(strHtml);
    CurrWindow.document.close();
    CurrWindow.focus();
}
