function displayAddComment() {
		document.getElementById("id_discussion_form").style.display="block";
		document.getElementById("id_add_comment_link").style.display="none";
		document.getElementById("id_name").focus();
		window.location = "#content";
	}
	function submitComment() {
		if (document.getElementById("id_name").value == "") {
			alert("Vyplňte prosím vaše jméno");
			document.getElementById("id_name").focus();
			return;
		}
		if (document.getElementById("ctext").value == "") {
			alert("Vyplňte prosím kontrolní kód");
			document.getElementById("ctext").focus();
			return;
		}
		if (document.getElementById("id_content").value == "") {
			alert("Vyplňte prosím příspěvek");
			document.getElementById("id_content").focus();
			return;
		}
		document.getElementById("id_submit_post").disabled = true;
		document.getElementById("id_discussion_form").submit();
		
	}
