domena = location.hostname; 

function ZobrazBlok(zobraz_blok){
    document.getElementById(zobraz_blok).style.display='block';
    }

function SchovejBlok(skryj_blok){
    document.getElementById(skryj_blok).style.display='none';
    }

function SkryjBlok(skryj_blok, zobraz_blok){
    document.getElementById(skryj_blok).style.display='none';
    ZobrazBlok(zobraz_blok);
    }

function opengalery(url, width, height){
    window.open("http://" + domena + "/detailgalery.php?src=" + url, "foto", "toolbar=no, location=no, scrollbars=no, top=30, left=100, resizable=yes, width="+width+", height="+height+"");
}

function opengalery_folder(url, width, height){
    window.open("http://" + domena + "/gallery_folder_detail.php?src=" + url, "foto", "toolbar=no, location=no, scrollbars=no, top=30, left=100, resizable=yes, width="+width+", height="+height+"");
}


function openimage(url, width, height){
    window.open("http://" + domena + "/imgdetail.php?src=" + url, "foto", "toolbar=no, location=no, scrollbars=no, top=30, left=100, resizable=yes, width="+width+", height="+height+"");
}

//--------- animace banneru -------------
/*
var pocetobrazku = 5;
var start = null; 
var pocitadlo = 1; 
var prodleva = null;
 
function animace()
{
document.getElementById('rot_banner_' + pocitadlo).style.display = 'none';
pocitadlo++;

if(pocitadlo == (pocetobrazku + 1)){
  pocitadlo = 1; 
}

document.getElementById('rot_banner_' + pocitadlo).style.display = 'block';
}

function snimek()
{
prodleva = 5000;
with(1)
{
start = setInterval("animace()", prodleva);
}
}

snimek();
*/
//--------- konec animace banneru -------------
