/* -------------------------------------------  */

/* -------------------------------------------  */
function Okno1(obrazek, text) {
  nove_okno=window.open ("", "FOTKA", 
  "toolbar=no, location=no, directories=no, "+
  "status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=no, "+
  "width=950, height=690, top=5, left=5");

  with (nove_okno) {
    TXT = '<HTML>\n<TITLE>Velka fotka</TITLE>\n<BODY style="background-color:#DDDDEE">\n';
    TXT+= '<div align="center">\n';
    TXT+= '<h3 style="font-family: \'sans-serif\'">' + text + '</h3>\n';
    TXT+= '<TABLE width="100%" height="610"><TR>';
    TXT+= '<TD style="text-align:center;vertical-align:middle;">';
    TXT+= '<IMG SRC="' + obrazek + '" onmouseout="window.close()">\n';
    TXT+= '</TD></TR></TABLE></div>\n';
    TXT+= '</BODY></HTML>'; 
    document.write(TXT);
  }
}
  
/* -------------------------------------------  */


function OknoSrov(pic1,pic2,pic3,nadp,text) {
  nove_okno=window.open ("", "SROVNANI", 
  "toolbar=no, location=no, directories=no, "+
  "status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=no, "+
  "width=650, height=auto, top=5, left=5");

  with (nove_okno) {
    TXT = '<HTML>\n<TITLE>Srovnani</TITLE>\n<BODY style="background-color:#DDDDEE">\n';
    TXT+= '<div style="text-align:center">\n';
    TXT+= '<div style="text-align:left; width: 630px; margin: 10px auto">\n';
    TXT+= '<h3 style="font-family: \'sans-serif\'; ">' + nadp + '</h3>\n';
    TXT+= '<p style="font-family: \'sans-serif\'; text-align: justify;">' + text + '</p>\n';

    TXT+= '<TABLE width="100%"><TR>';
    TXT+= '<TD style="text-align:center;vertical-align:middle;">';
    TXT+= '<IMG SRC="' + obrazek + '" onmouseout="window.close()">\n';
    TXT+= '</TD></TR></TABLE></div></div>\n';
    TXT+= '</BODY></HTML>'; 
  }
}
/* -------------------------------------------  */

