<!--
function otevripiccompl(jmeno,zdroj,scrollb,wsirka,wvyska,sirka,vyska) {
   if (scrollb==1) {
    var msg=open("","Picture","toolbar=no,directories=no,resizable=yes,scrollbars=yes,width="+wsirka+",height="+wvyska);}
   else {
    var msg=open("","Picture","toolbar=no,directories=no,resizable=yes,scrollbars=no,width="+wsirka+",height="+wvyska);}
   msg.document.open ();
   msg.document.write("<HEAD><TITLE>"+jmeno+"</TITLE></HEAD>");
   msg.document.write("<BODY BGCOLOR=WHITE>");
   msg.document.write("<IMG onClick=\"window.close()\" SRC="+zdroj+" WIDTH="+sirka+" HEIGHT="+vyska+">");
   msg.document.write("</BODY>");
   msg.document.close();

}
function otevripic(jmeno,zdroj,sirka,vyska) {
otevripiccompl (jmeno,zdroj,0,sirka+20,vyska+30,sirka,vyska);
}
function otevripicsimpl(jmeno,zdroj) {
   if (window.childwidth==null) {
    var msg=open("","Loadpicture","toolbar=no,directories=no,resizable=no,scrollbars=no");
    msg.document.open ();   
    msg.document.write("<BODY BGCOLOR=WHITE>");
    msg.document.write("<IMG  SRC="+zdroj+">");
    msg.document.write("</BODY>");
    msg.document.close();
    vyska=msg.document.images[0].height;
    window.childheight=vyska+30;
    sirka=msg.document.images[0].width;
    window.childwidth=sirka+20;
    msg.close ();
   }
   var msg=open("","Picture","toolbar=no,directories=no,resizable=yes,scrollbars=no,width="+window.childwidth+",height="+window.childheight);
   msg.document.open ();
   msg.document.write("<HEAD><TITLE>"+jmeno+"</TITLE></HEAD>");
   msg.document.write("<BODY BGCOLOR=WHITE>");
   msg.document.write("<IMG onClick=\"window.close()\" SRC="+zdroj+">");
   msg.document.write("</BODY>");
   msg.document.close();
}
function otevripage(zdroj,sirka,vyska) {
  var msg=open(zdroj,"Page","toolbar=no,directories=no,resizable=yes,scrollbars=yes,width="+sirka+",height="+vyska);
  msg.predejlink=true;
  msg.predejlinkwind=msg;  
}
function predejlinkparent (zdroj) {
window.opener.predejlink=false;
window.opener.location=zdroj;
window.close(); 
}
// -->