<!--
function Check(theForm)
{
  //2008年四月新增功能半角判断
if(theForm.zk.value.match(/[\uff00-\uffff]/g))
  {
    alert("准考号必须全部为半角数字！");
    theForm.zk.focus();
    return (false);
  }   

  if (theForm.zk.value == "")
  {
    alert("请输入您的准考号！");
    theForm.zk.focus();
    return (false);
  }   

		if (theForm.zk.value.length!=12)
      {
        alert("准考号错误!必须为12位!");
        theForm.zk.focus();
        theForm.zk.select();
        return false;
      } 
  if (theForm.xm.value == "")
  {
    alert("请输入您的姓名！");
    theForm.xm.focus();
    return (false);
  } 
  if (theForm.sfz.value == "")
  {
    alert("请输入您的身份证！");
    theForm.sfz.focus();
    return (false);
  } 
//   if (theForm.verifycode.value == "")
//  {
//    alert("请输入验证序列！");
//    theForm.verifycode.focus();
//    return (false);
//  }   
   
//   if (theForm.verifycode.value.length!=6)
//      {
//        alert("验证序列应为6位数!");
//        theForm.verifycode.focus();
//        theForm.verifycode.select();
//        return false;
//      } 

return (true);
}
//-->
