// JavaScript Document


function velka_fotka(nazev)
    {
   okno=window.open("","velke","left=50,top=50,width=690,height=460,"+
   "toolbar=no,location=no,directories=no,status=no,menubar=no,"+
   "scrollbars=no,resizable=no,copyhistory=no");
    with (okno.document)
      {
      open();
      write ('<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"\n'+
      '\"http://www.w3.org/TR/xhtml11/DTD/xhtml1-strict.dtd\">\n');
      write ("<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"cs\" lang=\"cs\">\n");
      write ("<head>\n");
      write ("<meta http-equiv=\"content-type\" content=\"text/html; charset=windows-1250\" />\n");
      write ("<title>Fotografie</title>\n");
      write ("<link rel=\"stylesheet\" type=\"text/css\" href=\"styly_fotek.css\" />\n");
      write ("</head>\n");
      write ("<body>\n");
      write("<img src=\""+nazev+"\" width=\"650\" height=\"420\" />\n");
      write ("</body>\n");
      write ("</html>");     
      close();
      }
     } 
