//comments.js
function comment_submit()
{
	if (document.getElementById("comment_form").recaptcha_response_field.value == "")
	{
		alert ("Παρακαλώ συμπληρώστε το πεδίο του captcha"); 
		return false;
	}
	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")) {
		window.location.hash="";
		document.getElementById("comment_form").submit();
	//}
}


