function obarvi(id,barva)
{
	document.getElementById(id).style.background=barva;
}
function odzobraz(id)
{
	document.getElementById(id).style.display="none";
}
function zobraz(id)
{
	document.getElementById(id).style.display="block";
}