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) {

//    alert(foto1.width);
//    alert(foto1.height);


    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:0px;">\n'+               
               '<img src="'+nomefile+'" alt="" BORDER="0" NAME="imageTest" ID="imageTest">\n'+
               '</body>\n</html>';

//     alert(strHtml);  
        
     CurrWindow = window.open("", "nuovafinestra", stringa);
     CurrWindow.document.write(strHtml);
     CurrWindow.document.close();
     CurrWindow.focus();
}
