function $(id)
{
	if (!document.getElementById (id)) 
	return false; 
	else 
	return document.getElementById (id); 
}

function odkryjZaslon(blok)
{
	var blok = $(blok);
	blok.style.display = (blok.style.display == 'none' ? 'block' : 'none');	
}


