function zobraz(adresa,o_sirka,o_vyska,lista){
stred_x = Math.round((window.screen.width - o_sirka) / 2);
stred_y = Math.round((window.screen.height - o_vyska) / 2);
window.open(adresa,"_blank","width=" + o_sirka + ",height=" + o_vyska + ",top=" + stred_y + ",left=" + stred_x + ",menubar=no,resizable=no,status=no,titlebar=no,toolbar=no,scrollbars=" + lista);
}