/*****************
***定义全局变量***
*****************/

//列表数据颜色相关
var tdBgColor_0="#ffffff"; //背景色1
var tdBgColor_1="#f5f5f5"; //背景色2
var tdBgColor_MouseOver = "#F0F0F0"; //"#7FFFD4"; //鼠标滑过背景色
var tdBgColor_OnClick = "#D0D0D0"; //"#90EE90"; //点击后背景色

//广告相关设置
var isShowClickAD=false; //点击超连接是否弹出广告

function ClickUrl(url,type,newWindow)
{
	switch(type)
	{
		case "torrent":
			newWindow=true;//默认值为true
			break;
		case "bbs":
			newWindow=true;//默认值为true
			break;
		case "onlineplay":
			newWindow=false;//默认值为false
			break;
		case "torrentlist":
			newWindow=true;//默认值为true
			break;
		default:
			break;
	}
	if(isShowClickAD)
	{}
	else
	{
		if(newWindow)
			window.open(url);
		else
			window.location=url;
	}
}

function StartSearch()
{
	var q = document.getElementById("SearchStr").value;
	var id = document.getElementById("ClassID").value;
	var re=/^\s+$/i;
	q=q.replace(re,"");
	if (q != "") {
		window.location = "index.aspx?q=" + encodeURI(q) + '&c=' + id;
	}
}