function searchinfo(){		
	if(document.search.radiobutton[0].checked){		
		document.search.Keyword.value = document.search.query.value
		document.search.action = 'article/article_search.asp'
		return true;
	}
	if(document.search.radiobutton[1].checked){
		document.search.target="_blank";
		document.search.action = 'http://search.ningbo.gov.cn/gaiscgi/query_run.exe?';		
		document.search.submit();		
		return false;
	}
	if(document.search.radiobutton[2].checked){
			var str="http://www.baidu.com/s?wd="+document.search.query.value+"&cl=3";
			window.open(str);
			return false;		
	}
	//http://www.google.com/search?hl=zh-CN&newwindow=1&q=aaaaaa&btnG=%E6%90%9C%E7%B4%A2&lr=lang_zh-CN
	//alert(document.search.radiobutton[0].checked);http://www.baidu.com/s?wd=afdasf&cl=3
	//if(document.search.radiobutton[0].checked){
	//	document.search.action = 'http://search.ningbo.gov.cn/gaiscgi/query_run.exe?';
	//	document.search.submit();
	//}	
	//if(document.search.radiobutton[1].checked){
	//	document.search.action = 'http://www.nbsti.gov.cn/Search/default.aspx?Key_String='  + document.search.keyword.value +'&SF=0';
	//	document.search.submit();
	//}
	
	//if(document.search.searchengine.options[0].selected){
	//		document.search.action = 'http://www.baidu.com/s?wd='  + document.search.query.value + '&cl=3';
	//		document.search.submit();
	//	}
	//	else{
	//		document.search.action = 'http://www.google.com/search?lr=lang_zh-CN&hl=zh-CN&q='  + document.search.query.value;
	//		document.search.submit();
	//	}
	
}

