function zobraz(id)
{
  if(document.getElementById(id))
	document.getElementById(id).style.display="block";
}
function zobraz_in(id)
{
  if(document.getElementById(id))
	 document.getElementById(id).style.display="inline";
}
function odzobraz(id)
{
  if(document.getElementById(id))
	document.getElementById(id).style.display="none";
}

