function skryj(koho) {
    if (koho == "box_o_cestovni_kancelari") {
           (funkce('box_zobraz'));
           (funkce('box_skryj'));
           (funkce('box_skryte'));
           return;
    }
}
           
function funkce(co) {
		if (document.getElementById(co).style.visibility == "hidden") {
			document.getElementById(co).style.visibility = "visible";
			document.getElementById(co).style.display = "block";
			//$(co).show('slow');
		}else{
			document.getElementById(co).style.visibility = "hidden";
			document.getElementById(co).style.display = "none";
			//$(co).hide('fast')
		}
	return false;
};
