function chkFormular() { if (document.Formular.comment_headline.value == "") { alert("Vă rugăm introduceţi titlul!"); document.Formular.comment_headline.focus(); return false; } if (document.Formular.comment_name.value == "") { alert("Vă rugăm introduceţi numele dumneavoastră!"); document.Formular.comment_name.focus(); return false; } if (document.Formular.comment_txt.value == "") { alert("Vă rugăm introduceţi comentariul dumneavoastră!"); document.Formular.comment_txt.focus(); return false; } if (document.Formular.comment_txt.value.length > 400) { alert("Aveţi "+document.Formular.comment_txt.value.length+" Indicaţii!"); document.Formular.comment_txt.focus(); return false; } if (document.Formular.captchas_input.value == "") { alert("Vă rugăm introduceţi Captchas-Code!"); document.Formular.captchas_input.focus(); return false; } }