
function checkSearchInput(){
	var keyword = document.getElementById("keyword").value;
//	alert(keyword);
	if(keyword==""){
		alert("搜索内容不能为空");
		return false;
	}
	return true;
}
