/*搜索网站*/
function keywords_submit()
{
	var keytype = getid("keywords").value;
	if(!keytype)
	{
		alert("请输入搜索关键词!");
		return false;
	}
	window.location.href = base_file + "?" + base_ctrl + "=search&keywords="+EncodeUtf8(keytype);
	return true;
}

function dasso(obj, sType) { 
	var oDiv = document.getElementById(obj); 
	if (sType == 'show') { oDiv.style.display = 'block';} 
	if (sType == 'hide') { oDiv.style.display = 'none';} 
} 

