function check_search(txt_word){
  if(filter(txt_word.value).length==0){
    alert("请输入搜索关键字！");
    txt_word.focus();
    return false;
	}
}
function filter(word){
  return  word.replace(/(^\s*)|(\s*$)/g, "");
}