
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){
 
	  var w = 400;
   var h = 250;
   var l = Math.floor((screen.width-w)/2);
   var t = Math.floor((screen.height-h)/2);



  largh=foto1.width+20;
  altez=foto1.height+25;
  stringa="width=" +largh+ ",height=" +altez+ ",top=" + t + ",left=" + l + ",status=no,menubar=no,resizable=yes,scrollbars=no";

finestra=window.open(img,"",stringa);
finestra.document.bgColor="#000000";



//  pulsante chiudi 
finestra.document.write("<HR><center><FORM><INPUT TYPE='button' VALUE='Chiudi' onClick='window.close()'></FORM>");
finestra.document.write("</CENTER>");

}