function okno(soubor,x,y)
{
  str = "width="+x;
  str+= ", height="+y;
  str+= ", scrollbars=no";
  str+= " ,toolbar=no";
  win = window.open("", "Foto", str);
  win.document.open("text/html","replace");
  win.document.write("<html><head><title>Foto</title></head><body topmargin=0 leftmargin=0><img src="+soubor+"></body><html>");
  win.document.close();
}
