function movieSearch()
{
	try{
		var q = document.qvodSearch.q;
		var d = document.qvodSearch.d;
		if(q.value){
			str	= q.value;
			//过滤 / \ ' 等字符
			str = str.replace(/\//g," ");
			str = str.replace(/\\/g," ");
			str = str.replace(/\'/g," ");
			sLink = "http://www.qvodsou.com/search/search.do?q="+encodeURIComponent(d.value+str);
			top.location=sLink;
		}else{
			alert("请填写关键词！");
			q.focus();
		}
	 }
	catch(ex){}        	
}

function changeType(msg)
{
	var d	=	document.qvodSearch.d;
	d.value	=	msg;
}
function jumpTag(tag)
{
	sLink = "http://www.qvodsou.com/search/search.do?q="+encodeURIComponent(tag);
	top.location=sLink;
}
function killErrors() {
return true;
}
window.onerror = killErrors;
TT=document.URL;
TT=TT.split("?");
if (TT[1]=='qvodSouSoft'){
	var softCssLink = document.getElementsByTagName("link")[1];
    softCssLink.setAttribute("href", "/css/softMain.css");
}