function ajx_replace(text)
  {
    text = encodeURIComponent(text);
    return text;
  }

function zobraz_schov(id)
{
	var id = document.getElementById(id);

	if (id.style.display == 'none')
	{
			id.style.display = 'block';
	}
	else
	{
		id.style.display = 'none';
	}
}


  
