<!-- Begin
function Foto(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,20);
  }
}
function viewFoto(img){
  largh=foto1.width+20;
  altez=foto1.height+20;
  stringa="width="+largh+",height="+altez;
  finestra=window.open(img,"",stringa);
  finestra.document.write ("<html><head><meta http-equiv='imagetoolbar' content='no'><title>(c) www.planet.vig.de");
  finestra.document.write ("</title></head>");
  finestra.document.write ("<body oncontextmenu='return false' ondragstart='return false' onselectstart='return false'>");
  finestra.document.write ("<a href='javascript:window.close();'><img src=");
  finestra.document.write (img);
  finestra.document.write (" border='0'></a>");
  finestra.document.write ("</body></html>");  
  finestra.document.close();
  finestra.setTimeout('window.close()',100000);
}
//  End -->
