function otevri(titulek,obrazek,sirka,vyska) {
  handle = window.open('_obr','','toolbar=no,location=no,menubar=no,directories=no,status=no,scrollbars=auto,resizable=yes,copyhistory=no,' + 'width='+sirka + ',height='+vyska);
  text = '<HTML><HEAD><TITLE>' + titulek + '</' + 'TITLE' + '>'+'\n';
  text += '</HEAD><BODY bgcolor=#FFFFFF style="margin: 0" scrolbar=auto>'+'\n';
  text += '<img id="FOTO" style="cursor: pointer" src="images/' + obrazek +'" border="0" alt="Kliknětě pro zavření okna" onclick="window.close();">';
  
  text += '\n<SCRIPT language="JavaScript">'+'\n'+'<!--'+'\n';
  text += '' + '\n';
  text += '' + '\n';
  text += '' + '\n';
  text += '' + '\n';
  text += '' + '\n';
  text += '\n//'+'-'+'-'+'>\n</SCRIPT>';  
  
  text += '</' + 'BODY' + '><' + '/HTML' + '>';
  handle.document.write(text);
  handle.window.moveTo(5,5);
}


function prehraj(titulek,video) {
  handle = window.open('','','toolbar=no,location=no,menubar=no,directories=no,status=no,scrollbars=auto,resizable=yes,copyhistory=no,' + 'width=365' + ',height=340');
  text = '<HTML><HEAD><TITLE>Kamtudio, Tomáš Kubák - ' + titulek + '</' + 'TITLE' + '>'+'\n';
  text += '</HEAD><BODY bgcolor=#FFFFFF style="margin: 5" scrolbar=auto>'+'\n';
  text += '<embed id="video" src="video/' + video +'" autostart="true">';
  
  text += '\n<SCRIPT language="JavaScript">'+'\n'+'<!--'+'\n';
  text += '\n//'+'-'+'-'+'>\n</SCRIPT>';  
  
  text += '</' + 'BODY' + '><' + '/HTML' + '>';
  handle.document.write(text);
}




function otevri_BAD(titulek,obrazek) {
  handle = window.open('_obr','','toolbar=no,location=no,menubar=no,directories=no,status=no,scrollbars=auto,resizable=yes,copyhistory=no,' + 'width=400' + ',height=400');
  text = '<HTML><HEAD><TITLE>' + titulek + '</' + 'TITLE' + '>'+'\n';
  text += '\n<SCRIPT language="JavaScript">'+'\n'+'<!--'+'\n';
  text += 'function velikost()' + '\n' + '{\n';
  text += '  sirka=document.all.FOTO.clientWidth+0;' + '\n';
  text += '  vyska=document.all.FOTO.clientHeight+0;  ' + '\n';
  text += '  window.moveTo(5,5);' + '\n';
  text += '  window.resizeTo(sirka,vyska);' + '\n';
  text += '}' + '\n';
  text += '\n//'+'-'+'-'+'>\n</SCRIPT>';  

  text += '</HEAD>\n<BODY bgcolor=#FFFFFF style="margin: 0" scrolbar=auto onload="velikost()">'+'\n';
  text += '<img id="FOTO" style="cursor: pointer" src="images/' + obrazek +'" border="0" alt="Kliknětě pro zavření okna" onclick="window.close();">';
  
  text += '</' + 'BODY' + '><' + '/HTML' + '>';
  handle.document.write(text);
}
