﻿function CheckForm(searchForm)
{
	if (document.searchForm.name.value == "")
	{
		if (document.searchForm.no.value == "")
		{
			if (document.searchForm.pid.value == "")
			{
				alert("搜索 姓名/准考证号码/身份证号码 请至少填写一项！");
				document.selectForm.name.focus();
				return false;
			}
		}
	}
	else
	{
		document.location = "?name=" + searchForm.name.value + "&no=" + searchForm.no.value + "&pid=" + searchForm.pid.value ;
	}
}