<!--
function switchVisibility(name)
	{
	element = document.getElementById(name + '_open')
	if (element.style.display == 'none')
		{
		element.style.display = 'block'
		}
	else
		{
		element.style.display = 'none'
		}
	}
// -->

<!--
function Smile(what)
	{
	document.forms.shoutboard.text.focus();
	document.forms.shoutboard.text.value=document.forms.shoutboard.text.value+what;
	}
// -->

<!--
function Smile_kniha(what)
	{
	document.forms.kniha.body.focus();
	document.forms.kniha.body.value=document.forms.kniha.body.value+what;
	}
// -->

<!--
var slen = 5000;
function countit()
{
   str = document.kniha.body.value;
   strlength = str.length;
   document.kniha.count.value = slen - strlength;
   if(slen-strlength < 0) document.kniha.count.value = '!!!';
}
//-->

<!--
var slen2 = 2000;
function countit2()
{
   str = document.aktualita.news.value;
   strlength = str.length;
   document.aktualita.count.value = slen2 - strlength;
   if(slen2-strlength < 0) document.aktualita.count.value = '!!!';
}
//-->

<!--
function otazka(message,url)
	{
	if(confirm(message)) location.href = url;
	}
//-->

<!--
function email(jmeno, domena) {
		return(document.location.href="mailto:"+jmeno+"@"+domena);
	}
//-->

<!--
function makeWindow(url) {
	window.open(url, "Fotka", "top=0,left=0,width=0,height=0,toolbar=0,status=0,scrollbars=0,resizable=0");
}
//-->

