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


