function verif_formulaire_sourat() { if(document.myFormComment.firstnameComment.value == ""){ window.alert('الرجاء إدخال اسمك الشخصي'); document.myFormComment.firstnameComment.focus(); return false; } if(document.myFormComment.lastnameComment.value == ""){ window.alert('الرجاء إدخال اسمك العائلي'); document.myFormComment.lastnameComment.focus(); return false; } if(document.myFormComment.emailComment.value == ""){ window.alert('الرجاء إدخال عنوان البريد الإلكتروني الخاص بك'); document.myFormComment.emailComment.focus(); return false; } adresse = document.myFormComment.emailComment.value; var place = adresse.indexOf("@",1); var point = adresse.indexOf(".",place+1); if ((place > -1)&&(adresse.length >2)&&(point > 1)) { } else { window.alert("البريد الإلكتروني خطأ"); document.myFormComment.emailComment.focus(); return false; } if(document.myFormComment.commentComment.value == ""){ window.alert('تعليقك يجب أن يتجاوز 100 حرفا'); document.myFormComment.commentComment.focus(); return false; } if(document.myFormComment.commentComment.value.length < 100) { window.alert('تعليقك يجب أن يتجاوز 100 حرفا'); document.myFormComment.commentComment.focus(); return false; } if(document.myFormComment.langueComment.checked == false) { window.alert('الرجاء كتابة التعليق باللغة العربية'); document.myFormComment.langueComment.focus(); return false; } else { formObjComment.submit();cacheId('addcomments');cacheId('ajouteruncom'); } }