function  rozVyhl(id,prom)
{
	skryjVse();
	rozVyhlOdst=document.getElementById(id).style;
	if(prom)
	{
		rozVyhlOdst.display="block";
	}
}

function  skryjVse()
{
	document.getElementById('rozVyhl').style.display="none";
}

function  zobraz(id,prom)
{
	rozVyhlOdst=document.getElementById(id).style;
	if(prom)
	{
		rozVyhlOdst.display="block";
	}
	else
	{
		rozVyhlOdst.display="none";
	}
}


