// JavaScript soubor

function Over(id)
{
 i = document.getElementById(id);  
 img = i.src;
 if (img.indexOf('hi.png')!=-1) {
   i.src = img.substr(0,img.length-6) + '.png';
    } else {
   i.src = img.substr(0,img.length-4) + 'hi.png';
    }      
}


function stat()
{
 window.status=window.defaultstatus;
 return true;
}

function highlight(dc,c1)
{
    dc.style.backgroundColor=c1;
}

function nw(wdth,hgt,foto)
  {
  lft=(screen.width-wdth)/2;
  topp=(screen.height-hgt)/2;
  var nwin=window.open('','rekobyt','width='+wdth+',height='+hgt+',left='+lft+',top='+topp);
  nwin.location='foto.php?foto='+foto; 
  }

function show(id)
 {
  i = document.getElementById(id);  
  old = i.style.display;
  
  for(var a=1;a<6;a++)
   {
    j = document.getElementById('lb'+a);  
    j.style.display='none';
   }

  if(old!='block') i.style.display='block';
 }

function iover(id,x)
 {
  i = document.getElementById(id);  
  if(x==1) i.style.border='2px solid #ffaf6f'; 
   else i.style.border='2px solid rgb(235,230,173)';
 }
