<!--
function datacheck()
{
  if(document.reg.shoujihao.value =="")
	{alert("注册手机号不能为空！");
    document.reg.shoujihao.focus();
	return (false);
     } 

 if(document.reg.password.value =="")
     {alert("密码不能为空！");
	 document.reg.password.focus();
	return (false);
	 } 
 if(document.reg.verifyCode.value =="")
     {alert("附加码不得为空！");
	 document.reg.verifyCode.focus();
	return (false);
	 }
	return (true);
}
//-->

