function comment_validation(){	var s=document.CommentForm.EMail.value; 	var len = s.length;  	var v=s.indexOf("@",1);   	var po;   	if ( v != -1 )    	po = s.indexOf(".",v);    else po = -1;  	 if (document.CommentForm.Name.value == "" ){		  alert('يرجى كتابة الاسم');          document.CommentForm.Name.focus();           return false;	    }	    else if ( document.CommentForm.EMail.value == "" ) {		   alert('يرجى كتابة البريد الإلكتروني');           document.CommentForm.EMail.focus();           return false;	    }        else if ( (v == -1)||(po == -1) || (v==0) || (po==0)){          alert('يرجى كتابة البريد الإلكتروني بشكل صحيح');          document.CommentForm.EMail.select();	      document.CommentForm.EMail.focus();	      return false;        }        else if ( ( (po -v) <= 1) || (len-po <= 2) ){          alert('يرجى كتابة البريد الإلكتروني بشكل صحيح');	      document.CommentForm.EMail.select();          document.CommentForm.EMail.focus();          return false;        }        else if ( document.CommentForm.CommentTitle.value == "" ) {		   alert('يرجى كتابة عنوان التعليق');           document.CommentForm.CommentTitle.focus();           return false;	    }
	    else if ( document.CommentForm.auth_code.value == "" ) {
		   alert('يرجى كتابة رمز التأكيد');
           document.CommentForm.auth_code.focus();
           return false;
	    }        else if ( document.CommentForm.YourComment.value == "" ) {		   alert('يرجى كتابة تعليقك');           document.CommentForm.YourComment.focus();           return false;        }        else{            return true;	    }
}///////////////////////////////////////////////////////function s2friend_validation(){	var s=document.S2FriendForm.FEMail.value; 	var len = s.length;  	var v=s.indexOf("@",1);   	var po;   	if ( v != -1 )    	po = s.indexOf(".",v);    else po = -1;  	 if (document.S2FriendForm.FName.value == "" ){		  alert('يرجى كتابة الاسم');          document.S2FriendForm.FName.focus();          return false;	    }	    else if ( document.S2FriendForm.YEMail.value == "" ) {		   alert('يرجى كتابة بريدك الإلكتروني');           document.S2FriendForm.YEMail.focus();           return false;	    }	    else if ( document.S2FriendForm.FEMail.value == "" ) {		   alert('يرجى كتابة البريد الإلكتروني لصديقك');           document.S2FriendForm.FEMail.focus();           return false;	    }        else if ( (v == -1)||(po == -1) || (v==0) || (po==0)){          alert('يرجى كتابة البريد الإلكتروني لصديقك بشكل صحيح');          document.S2FriendForm.FEMail.select();	      document.S2FriendForm.FEMail.focus();	      return false;        }        else if ( ( (po -v) <= 1) || (len-po <= 2) ){          alert('يرجى كتابة البريد الإلكتروني لصديقك بشكل صحيح');	      document.S2FriendForm.FEMail.select();          document.S2FriendForm.FEMail.focus();          return false;        }        else{            return true;	    }}