﻿
<!--//


function Memberschk(x)
{

if(x.txtEmail.value == "")
{
  
       document.all.lblMMessage.innerText  ="من فضلك أدخل البريد الألكترونى"
        x.txtEmail.focus();
		return false
}
	if(x.txtEmail.value.indexOf("@") == -1 ) 
	{
      document.all.lblMMessage.innerText  ="من فضلك أدخل بريد ألكترونى صحيح"
		x.txtEmail.focus();
		x.txtEmail.select();
		return false
    }
 
    if(x.txtEmail.value.indexOf(".") == -1 ) 
	{
       document.all.lblMMessage.innerText  ="من فضلك أدخل بريد ألكترونى صحيح"
		x.txtEmail.focus();
		x.txtEmail.select();
		return false
    }
 
if(x.txtPw.value == "")
{
  
       document.all.lblMMessage.innerText ="من فضلك أدخل كلمة المرور"
        x.txtPw.focus();
		return false
}

		return true;
}
//-->


