function zobrazit (it, box)
{
	var vis = (box.checked) ? "hidden" : "visible";
	document.getElementById(it).style.visibility = vis;
}
