//
function $(id){
	return document.getElementById(id);	
}
function selectTag(showContent,selfObj){
var tag = document.getElementById("tags").getElementsByTagName("li");
var taglength = tag.length;
for(i=0; i<taglength; i++){
tag[i].className = "";
}
selfObj.parentNode.className = "selectTag";
for(i=0; j=document.getElementById("tagContent"+i); i++){
j.style.display = "none";
}
document.getElementById(showContent).style.display = "block";
}

function openplay(skin,id,id1,id2,playid,filename,flag,Realurl){
	
	var widthv,heightv,xposition,yposition
	widthv = "500";
	heightv = "465";
	xposition = (screen.width - widthv)/2;
	yposition = (screen.height - heightv)/2;	
	window.open('../../look/PlayList/Play.asp?skin='+skin+'&id='+id+'&id1='+id1+'&id2='+id2+'&playid='+playid+'&filename='+escape(filename)+'&flag='+flag+"&Realurl="+escape(Realurl),'play','toolbar=no,Directories=no,location=no,Status=no,,menubar=no,resizable=no,scrollbars=no,width='+widthv+',height='+heightv+',left='+xposition+',top='+yposition)
}
