function checkform1()
{
	temp=document.form1.lb;
	if (temp.value==""){
		alert("请选择类别");
		temp.focus();
		return false;
		}
return true;
}
function checkform2()
{
	temp=document.form2.cs;
	if (temp.value==""){
		alert("请选择厂商");
		temp.focus();
		return false;
		}
return true;
}
function checkform3()
{
	temp=document.form3.key;
	if (temp.value==""){
		alert("请正确输入关键字");
		temp.focus();
		return false;
		}
		if (temp.value=="关键字"){
		alert("请输入关键字");
		document.form3.key.value="";
		document.form3.key.focus();
		return false;
		}

return true;
}
