function CheckSo()
{
var str=document.search.key.value;
if(str==""||str=="输入关键词..."){
alert("关键词不能为空!");
//document.pinglun.title.focus();
return false;
}
if(str.length<2){
alert("关键词不能小于2个！");
return false;
}
if(str.length>15){
alert("关键词不能超过15个！");
return false;
}
return true;
}


