// JavaScript Document
function checkdata()
{
 for( i=0; i<document.forms[0].elements.length; i++)
   if( document.forms[0].elements[i].value.length == 0 )
     {   
      alert('الرجاء إكمال إدخال البيانات');
	  return false;
     }
 return true	 
}
function checkaskshikh()
{
	var str=document.askshikhform.email.value
    var filter=/^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i
	if(document.askshikhform.name.value.length > 0)
	   if(document.askshikhform.title.value.length > 0)
	      if(document.askshikhform.question.value.length > 0)
             if (filter.test(str))
                  return true;
	         else { alert('الرجاء التأكد من ان البريد الالكتروني صحيح'); return false; }

      alert('الرجاء اكمل إدخال البيانات');
	  return false;
}

function checkcontactus()
{
	var str=document.contactusform.email.value
    var filter=/^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i
	if(document.contactusform.name.value.length > 0)
	   if(document.contactusform.title.value.length > 0)
	      if(document.contactusform.subject.value.length > 0)
             if (filter.test(str))
                  return true;
	         else { alert('الرجاء التأكد من ان البريد الالكتروني صحيح'); return false; }

      alert('الرجاء اكمل إدخال البيانات');
	  return false;
}
