function openwindow(co) {
  window.open(co,'_blank','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,left=0,top=0');
};

function kontrola_dotazy(obj){
	if (obj.autor.value.length == 0){
		alert("Je nutné uvést své jméno");
		obj.autor.focus();
		return (false);
	}
	if (obj.text.value.length == 0){
		alert("Je nutné něco napsat");
		obj.text.focus();
		return (false);
	}
	return (true);
}

function myhref(text,kam) {
	alert(text);
	top.location.replace(kam);
};

function zobrazTAB(o) {
	if (document.getElementById(o).style.display==""){
		document.getElementById(o).style.display="none";
	}else{
		document.getElementById(o).style.display="";
	}	
};


