﻿function checksearchform(){

if(document.searckform.keyword.value==''){
alert('关键字不能为空！！');
document.searckform.keyword.focus()
return false;
}
return true;



}
