function kontrola(form_name)
	{
	if(form_name.jmeno.value=="" || form_name.text.value=="")
		{
		alert("Je nutno vyplnit JMÉNO a TEXT!"); form_name.jmeno.focus();return false;
		}
	}        
function smile(smajlik)
	{
	text2 = smajlik+" ";
	text1 = document.formular.text.value;
	text2 = text1+" "+smajlik+" ";
	document.formular.text.focus();
	document.formular.text.value = text2;
	}
function fullScreen(theURL)
	{
	window.open(theURL, '', 'fullscreen=yes, scrollbars=yes, resizable=yes');
	}