<!--

function doSearch(sid, kw)
{
	switch(sid)
	{
		case "1":
			tUrl = "http://www.google.com/search?hl=zh-CN&q=" + kw;
			break;
		case "2":
			tUrl = "http://search.sina.com.cn/cgi-bin/search/search.cgi?_searchkey=" + kw + "&_ss=sina&from=sinas";
			break;
		case "3":
			tUrl = "http://cn.websearch.yahoo.com/search/web_cn?stype=&p=" + kw + "&scch=on&ei=gb";
			break;
                case "4":
			tUrl = "http://site.search.sohu.com/website.jsp?key_word=" + kw + "&page_index=0";
			break;
                case "5":
			tUrl = "http://www.yisou.com/search?lang=zh-cn%2Czh-tw&p=" + kw;
			break;
		default:
			tUrl = "http://www.baidu.com.cn/s?wd=" + kw;
			break;
	}
	window.open(tUrl, "_blank");
}

//-->