function SmsValidator()
{
	//֤ Ƿ ѡ SMSReceiveEnabled  SMSSendEnabled
	//if($("SMSReceiveEnabled").checked==false && $("SMSSendEnabled").checked==false)
	if($("SMSReceiveEnabled").checked==false)
	{
		return true;
	}
	//֤Ƿ֤ɹ
	if (TheCellPhone==$("PrimaryPhone").value && TheStatus=="OK")
	{
		return true;
	}
	
	alert('Please complete the cell phone authentication.');
	SetFocus($("SMSPasscode"));
	return false;
}