function checkSubmitStatusother(theForm){
	if(document.getElementById('myuseremailother').value==''){
		document.getElementById('myuseremailother').focus();
		alert("请您输入邮箱地址！");
		return false;
	}
	if(!NoahWebJsExpTest(theForm.myuseremailother.value,/^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/))
		{
			alert("请输入一个有效的邮件地址！");
			theForm.myuseremailother.focus(); 
			return (false); 
		}	
	if(document.getElementById('myuserpasswordother').value==''){
		alert("请输入一个有效的密码！");
			theForm.myuserpasswordother.focus(); 
			return (false); 
	}
}

function NoahWebJsExpTest(str,strm){
	var re = strm;if(str=='' || str==null) return true;if (!re.test(str)){return false;}return true;}

