
<!-- Begin
function CaricaFoto(img, ititle){
  foto1= new Image();
  foto1.src=(img);
  Controlla(img, ititle);
}
function Controlla(img, ititle){
  if((foto1.width!=0)&&(foto1.height!=0)){
    viewFoto(img, ititle);
  }
  else{
    funzione="Controlla('"+img+"')";
    intervallo=setTimeout(funzione,20);
  }
}
function viewFoto(img, ititle){
	var win;
  largh=foto1.width+20;
  altez=foto1.height+20;
  stringa="width="+largh+",height="+altez;
  	win = window.open("","imageviewer","width="+largh+",height="+altez+",menubar=no,toolbar=no");
	win.document.open();
	win.document.write("<html><head><title>"+ititle+"</title></head><body bgcolor=white>");
	win.document.write("<a href='javascript:window.close();'><img src="+img+" border='0'></a></body></html>");
	win.document.close();
}
//  End -->

