<!--
function openWindow() {
window.open("","JSL",'toolbar=0,location=0,scrollbars=0,width=300,height=300,resizable=0,top=20,left=20');
}

function prohlaseni(){
window.open("prohlaseni-o-pristupnosti.htm","okno",
"height=300px, width=450px, top=0, left=200px, resizable=no, status=no, toolbar=no,location=no, scrollbars=yes, resizable=yes");
}
function terminy(){
window.open("terminy-kurzu-popup.php","okno",
"height=400px, width=500px, top=0, left=200px, resizable=no, status=no, toolbar=no,location=no, scrollbars=yes, resizable=yes");
}

function setWindow()
{
window.resizeTo(obr.width+20, obr.height+58)
resizable=yes
}

function zobraz()
{
var a = document.getElementById('cudlikoid');
var b = document.getElementById('formular');
if(a.checked == true)b.style.display="none";
else b.style.display="block";
}

function noveokno(url,title,sirka,vyska)
{
  var pom = escape(title);
  var pole = pom.split('%');
  pom='';
  for(i = 0; i < pole.length; i++)
  {
    pom+=pole[ i ];
  }

  var obr = new Image();
  obr.src = url;
  if(sirka<=0 || vyska<=0)
  {
    sirka = obr.width;
    vyska = obr.height;
  }
  var okno=window.open('',pom,'width='+sirka+',height='+vyska+',resizble=0,menubar=0,toolbar=0,left=10,top=10,directories=0,location=0,scroolbars=0,copyhistory=0,status=1');
  okno.document.open();
  okno.document.writeln('<html>\n<head>\n<title>'+title+'</title>\n</head>\n<body background="" topmargin="0" leftmargin="0">');
  okno.document.writeln('<img src="'+url+'">');
  okno.document.writeln('</body>\n</html>');
  okno.document.close();
} 
//-->