// »¬¶¯²Ëµ¥
function Menu(o){
var j;
var id;
var e;
for(var i=1;i<=10;i++){
	id = "t" + i;	
	j = document.getElementById(id);
	if(j == null) return;
	e = document.getElementById("ts" + i);
	if(id != o.id){
		j.className="tl";
		e.style.display = "none";
	}else{
		j.className="th";
		e.style.display = "block";
	}
}
}
function New(o){
var j;
var id;
var e;
for(var i=1;i<=2;i++){
	id = "n" + i;
	j = document.getElementById(id);
	e = document.getElementById("ns" + i);
	if(id != o.id){
		j.className="new3";
		e.style.display = "none";
	}else{
		j.className="new1";
		e.style.display = "block";
	}
}
}
function Hot(o){
var j;
var id;
var e;
for(var i=1;i<=3;i++){
	id = "hot" + i;
	j = document.getElementById(id);
	e = document.getElementById("hots" + i);
	if(id != o.id){
		j.className="hot3";
		e.style.display = "none";
	}else{
		j.className="hot1";
		e.style.display = "block";
	}
}
}
function openWindow(url,width,height)
{
    var w =(screen.width-width)/2;
    var h = (screen.height-height)/2;
    window.open(url,"","height="+ height +",width="+ width +", top="+ h +", left="+ w +", toolbar=no, menubar=no, scrollbars=no, resizable=no,location=no, status=no,resizable =yes");
}
//function play(filmid,fileid,playlineid)
//{
//    openWindow("Player.aspx?filmid="+filmid+"&fileid="+fileid + "&playlineid=" +playlineid,650,520);
//    //window.open(","player","width=600,height=400,top=200,left=400,menubar=no,toolbar=no,scrollbar=no,location=no,status = no,");
//}
////´íÎó±¨¸æ
//function errorReport(filmID)
//{
//    openWindow("ErrorReport.aspx?filmID=" + filmID,300,200);
//}

