function openFoto($mkey) {
msg = window.open('foto_d.php?cislo='+$mkey, '_blank', 'toolbar=no, menubar=no, location=no, directories=no, scrollbars=no, resizable=no, status=no, width=40, height=40, top=40, left=40')
}

function openPrint($mkey) {
msg = window.open('tisk.php?id='+$mkey, '_blank', 'toolbar=yes, menubar=yes, location=no, directories=no, scrollbars=yes, resizable=no, status=no, width=660, height=550, top=40, left=40')
}

function fotoList(dir) {
if(dir=="next") {
  fc=fc+1;
  if(fc>fall) fc=fall;
  document.getElementById("refFoto").src="resize.php?filename="+fotos[fc]+"&mW=300&mH=225";
  document.getElementById("ctext").value=(fc+1)+" z "+(fall+1)+" obrázků";
//  document.getElementById("popiska").value=nazev+popisky[fc];
}
if(dir=="prev") {
  fc=fc-1;
  if(fc<0) fc=0;
  document.getElementById("refFoto").src="resize.php?filename="+fotos[fc]+"&mW=300&mH=225";
  document.getElementById("ctext").value=(fc+1)+" z "+(fall+1)+" obrázků";
//  document.getElementById("popiska").value=nazev+popisky[fc];
}

}

