function CaricaFoto(img,title){
         foto1= new Image();
         foto1.src=(img);
         Controlla(img,title);
}
function Controlla(img,title){
    if((foto1.width!=0)&&(foto1.height!=0)){
         viewFoto(img,title);
    } else {
     funzione="Controlla('"+img+"','"+title+"')";
     intervallo=setTimeout(funzione,20);
    }
}
function viewFoto(img,title){
         largh=foto1.width+20;
         altez=foto1.height+20;
         stringa="width="+largh+",height="+altez+",title="+title;
         finestra=window.open("orig.php?id=" + img + "&title=" + title,"",stringa);
}
