function PrevFoto(img){
  foto1= new Image();
  foto1.src=(img);
  Controlla(img);
}
function Controlla(img){
  if((foto1.width!=0)&& (foto1.height!=0)){
    viewFoto(img);
  }
  else{
    funzione="Controlla('"+img+"')";
    intervallo=setTimeout(funzione,100);
  }
}

function viewFoto(img){
  largh=foto1.width+50;
  altez=foto1.height+50;
  posh=Math.floor((screen.height-altez)/2); 
  posw=Math.floor((screen.width-largh)/2); 
 
  finestra=window.open("","w1","width="+largh+",height="+altez+",top="+posh+",left="+posw+",scrollbars=yes"+",resizable=yes");
  finestra.document.write('<html><head><title>Lo studio</title></head><body style="background-color:#006"><img src="'+img+'" /><input type="button" value="Chiudi" onClick="javascript:self.close()" style="margin-left:50%;" /></body></html>');
  finestra.document.close();
  finestra.focus();
  }
