function check(TheForm)
{
	var nKeyLen=(TheForm.Keyword.value).length;
	if(nKeyLen<1)
	{
		alert("请输入搜索关键字");
		TheForm.Keyword.focus();
		return false;
	}

	if(nKeyLen<2)
	{
		alert("搜索词至少输入2个字符。为了能搜索到您想要的信息，请尽量输入精确的搜索词。");
		TheForm.Keyword.focus();
		return false;
	}

	return true;
}
