function Foto(img, txt){
  var txt;
  foto1= new Image();
  foto1.src=(img);
  Controlla(img, txt);
}
function Controlla(img, txt){
  if((foto1.width!=0)&&(foto1.height!=0)){
    viewFoto(img, txt);
  }
  else{
    funzione="Controlla('"+img+"','"+txt+"')";
    intervallo=setTimeout(funzione,20);
  }
}
function viewFoto(img, txt){
  largh=foto1.width+20;
  altez=foto1.height+100;
  stringa="width="+largh+",height="+altez;
  var finestra=window.open("","win",stringa);
  finestra.document.open("text/html", "replace");
  finestra.document.write("<HTML><HEAD><TITLE>Gieses Fotos USA/CDN 84-99</TITLE></HEAD><BODY bgcolor="+'"'+"#000000"+'"'+"><img src="+'"'+img+'"'+"><center><font color="+'"'+"#ffffff"+'"'+" size="+'"'+"2"+'"'+"face="+'"'+"Arial,sans-serif"+'"'+"><b>"+txt+"<br><form><input type="+'"'+"button"+'"'+" value="+'"'+"schliessen"+'"'+" onclick="+'"'+"window.close()"+'"'+"></form></BODY></HTML>");
}
