domena = location.hostname;
web_url = 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+"");
}


