function showCount(_url){
	var url = "http://www.lzisti.net.cn:8001/portal/liuzhou/"+_url;
	var showCount = $.ajax({
		url: url,
		data: "",
		async: false
	}).responseText;
	$("#showCount").html(showCount);
}

function SearchEnterKeyword(){
	var search = document.getElementById("searchword").value;
	if(search == "请输入任意关键字"){
		document.getElementById("searchword").value = "";
	}
}

function search(){
	var searchForm = document.getElementById("searchForm");
	var searchword =  document.getElementById("searchword").value;
	if(searchword == "请输入任意关键字" || searchword.replace(/(^\s*)|(\s*$)/g, "")== "" || searchword.length==0){
		alert("请您输入检索词!");
		return false;
	}
	return true;
}
