//comments.js
function comment_submit()
{
	if (!checkform_name3("comment_uname", "Nickname", 2)) return false;
	if (!checkform_email("comment_uemail", "Email", false)) return false;
	if (!checkform_name3("comment_text", "Σχόλιο", 2)) return false;
	if(confirm("Your comment will now be submitted")) {
		document.getElementById("comment_form").submit();
	}
}

