var CurrWindow=null;

function Controlla(img, nomefinestra){
  if((foto1.width!=0)&&(foto1.height!=0)){
    viewimage(img, nomefinestra);
  }
  else{
    funzione="Controlla('"+img+"')";
    intervallo=setTimeout(funzione,20);
  }
}

function showimage(nomefile, nomefinestra){
  foto1= new Image();
  foto1.src=(nomefile);
  Controlla(nomefile,nomefinestra);
}

function viewimage(nomefile, nomefinestra)
{
//alert(nomefile);
largh=foto1.width + 20;
altez=foto1.height + 20;
//var pippo=window.open('','foto', );
//pippo.close();
stringa="toolbar=no, location=no, status=no, menubar=no, scrollbars=no, resizable=no, width=" + largh + ",height=" + altez;
if (CurrWindow !=null)
CurrWindow.close();	
CurrWindow=window.open(nomefile, 'foto', stringa);
CurrWindow.focus();
}