function newkron(dir,img,sirka,vyska){
  win_pos_x=(screen.width-sirka)/2; //horizontální pozice okna
  win_pos_y=(screen.height-vyska)/2; //vertikální velikost okna
  url='kronnew.php?dir=kron'+dir+'&img='+img;
  if (typeof(kron)=='object'){
    kron.close();
  }
  //kron=window.open(url,'kron','width=' + sirka + ',height=' + vyska + ',top=' + win_pos_y + ',left=' + win_pos_x);
  kron=window.open(url,'kron','width=' + sirka + ',height=' + vyska + ',top=' + win_pos_y + ',left=' + win_pos_x);
  return false;
}

function newwin(obr,sirka,vyska){
  win_pos_x=(screen.width-sirka)/2; //horizontální pozice okna
  win_pos_y=(screen.height-vyska)/2; //vertikální velikost okna
  url='view.html?'+obr;
  if (typeof(okno)=='object'){
    okno.close();
  }
  okno=window.open(url,'view', 'width=' + sirka + ',height=' + vyska + ',top=' + win_pos_y + ',left=' + win_pos_x);
  return false;
}

function disp(){
  document.getElementById("moretxt").style.display='block';
}

function hide(){
  document.getElementById("moretxt").style.display='none';
}
