//Contact us function contactusform1() { if (document.getElementById("value21").value.length == 0) { alert("الاسم الكامل is empty"); document.getElementById("value21").focus(); return false; } if (document.getElementById("value22").value.length == 0) { alert("البريد الإلكتروني is empty"); document.getElementById("value22").focus(); return false; } document.contactusform.submit(); }