function newImg(which, numeroFoto){

    fotoAperta = true;
    document.getElementById("divFoto").style.display = "";
    document.getElementById("numeroFoto").innerHTML = "Foto " + numeroFoto;
    theImg = document.getElementById("foto");
    theImg.onload = function(){
        var imgw = theImg.width;
        var imgh = theImg.height;
        if(imgw<100) imgw = 100;
        if(imgh<100) imgh = 100;
        var l = Math.round((screen.width - imgw) / 2);
        var t = Math.round((screen.height - imgh) / 2);

//        var ImgWin = window.open('','imgwin',config='height='+imgh+',width='+imgw+',top='+t+',left='+l)
//        with(ImgWin.document){
//            writeln('<html><head><title>Display Image</title></head>');
//            writeln('<body onload="self.focus()" onblur="self.close()" style="margin: 0; padding: 0;">');
//            writeln('<div style="text-align:center">');
//            writeln('<img src='+which+'></div>');
//            writeln('<div style="text-align:center;font-size:9px">');
//            writeln('<a href="#" onClick="self.close()">Close Me</a>');
//            writeln('</div></body></html>');
//            close();
//        }
    }
    theImg.src = which;
}


