function novinkaFoto(f,n) {
  myLightWindow.activateWindow({href:'/pages/novinky_foto.php?n='+n+'&f='+f,width:'600px',height:'400px',type:'external',title:'Galéria - novinky'});
}
function referenciaFoto(f,n) {
  myLightWindow.activateWindow({href:'/pages/referencie_foto.php?n='+n+'&f='+f,width:'500px',height:'450px',type:'page',title:'Galéria - referencie'});
}
function hostesFoto(id) {
  myLightWindow.activateWindow({href:'/pages/hostesky_foto.php?id='+id,width:'600px',height:'400px',type:'page',title:'Hostesky'});
}
function naborForm() {
  myLightWindow.activateWindow({href:'/pages/nabor.php',width:'600px',height:'520px',type:'external',title:'Prihlasovací formulár'});
}
function showIntro() {
  myLightWindow.activateWindow({href:'/pages/intro.php',width:'450px',height:'400px',type:'external',title:'Prestige video'});
  setTimeout("myLightWindow.deactivate();",41000);
}

function galleryScroll(file_names,button){
  names=file_names;
  pole=names.split(";");
  poc = document.getElementById('pocitadlo');
  pom = document.getElementById('referencia_foto');
  obrazok_casti = pom.src.split("p=");
  
  //obrazok = nazov suboru
  obrazok = obrazok_casti[obrazok_casti.length - 1];
  
  
  //najdi poradovnik nacitaneho obrazka v poli suborov
  for (i=0;i<pole.length;i++){
    if (pole[i] == obrazok){
    num = i;
    }
  } 
  
  //ak button previous
  if(button==0 && num > 0){
    pom.src = "/files/referencie/photo.php?p=" + pole[num - 1];
    poc.innerHTML = (num) + '/' + pole.length;
  }
  
  //ak button next
  if(button==1 && num < pole.length - 1){
    pom.src = "/files/referencie/photo.php?p=" + pole[num + 1];
    poc.innerHTML = (num + 2) + '/' + pole.length;
  } 
}

function blinkIt() {
if (!document.all) return;
else {
for(i=0;i<document.all.tags('blink').length;i++){
s=document.all.tags('blink')[i];
s.style.visibility=(s.style.visibility=='visible') ?'hidden':'visible';
}
}
}
