<!--
function isreg(theForm)
{
if (theForm.keyword.value=="")
{
alert("请输入您要查询的关键词！");
theForm.keyword.focus();
return(false);
}
return (true);
}
-->