//CHECK EMAIL LIST//
function emaillist_Validator(theForm)
{
 if (theForm.email.value == "")
  {
    document.all.emailvldRequired.innerHTML ="أدخل البريد الإلكترونى";
    theForm.email.focus();
    return (false);
  }
 
  if (theForm.email.value.indexOf("@")== "-1")
  {
    document.all.emailvldRequired.innerHTML ="البريد الإلكترونى غير صحيح";
    theForm.email.focus();
    return (false);
  }
  
 if (theForm.email.value.indexOf(".")== "-1")
  {
    document.all.emailvldRequired.innerHTML ="البريد الإلكترونى غير صحيح";
    theForm.email.focus();
    return (false);
  }

  return (true);
}


function contact_validation(theForm){
	if (theForm.name.value == "") {
		alert("من فضلك أدخل اسمك!");
		theForm.name.focus();
		return false;
	}

	if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(theForm.email.value) == false ) {
		alert("بريد إلكتروني خاطئ! \nمن فضلك تأكد من البريد الإلكتروني.\n صيغة البريد الإلكتروني الصحيحة هي كالتالي: yourname@example.com");
		theForm.email.focus();
		return (false);
	}

	if (theForm.Subject.value == "") {
		alert("من فضلك أدخل موضوع الرسالة!");
		theForm.Subject.focus();
		return (false);
	}

	if (theForm.comment.value == "") {
		alert("من فضلك أدخل محتوى الرسالة!");
		theForm.comment.focus();
		return (false);
	}

	if ( theForm.valid_code.value == "") {
		alert('خطأ في رمز التأكيد! من فضلك تحقق من رمز التأكيد');
		theForm.valid_code.focus();
		return (false);
	}
	
	return (true);

}
