function testp(ii)
  {
    //alert('g');
    id=policko[ii];
    actual=ii;
    fotogo(id);
    document.getElementById('imgokno').style.display='block';
  }
  function testz(){
  document.getElementById('imgfotka').src='pix.gif';
  document.getElementById('imgokno').style.display='none';
  }
  function next(){
  
  if ((actual+1)<policko.length) actual=actual+1;
  else actual=0;
  fotogo(policko[actual]);
  
  //document.getElementById('imgokno').style.display='none';
  }
  function prev(){
  if ((actual-1)>=0) actual=actual-1;
  else actual=policko.length-1;
  fotogo(policko[actual]);
  //document.getElementById('imgokno').style.display='none';
  }
  function fotogo(iddb){
    document.getElementById('imgfotka').src='09galerie/1V'+iddb+'.jpg';
    document.getElementById('status').innerHTML=''+(actual+1)+'/'+policko.length;
  }
  
  function fotoZbtnon(){
  document.getElementById('fotoZX').style.backgroundColor='silver';}
    function fotoZbtnoff(){
  document.getElementById('fotoZX').style.backgroundColor='gray';}
    function fotoNbtnon(){
  document.getElementById('fotoZN').style.backgroundColor='silver';}
    function fotoNbtnoff(){
  document.getElementById('fotoZN').style.backgroundColor='gray';}
    function fotoPbtnon(){
  document.getElementById('fotoZP').style.backgroundColor='silver';}
    function fotoPbtnoff(){
  document.getElementById('fotoZP').style.backgroundColor='gray';}
  
