	//搜索
	function checkSearchForm(theform)
	{
		if (theform.keyword.value==''){
			alert("请输入搜索关键字！");
			theform.keyword.focus();
			return false;
		}
		return true;
	}
	//调整字体 default size=12px
	function doZoom(size)
	{
		document.getElementById('detail').style.fontSize = size+'px';
	}