//影片详细页
function ShowFilm(nFilmId, nChannelId)
{
	switch(nChannelId)
	{
		case 25:
			window.open( "/movieinfo/movie_detail.aspx?FilmId=" + nFilmId + "&ChannelId=" + nChannelId);
			break;
		case 30:
			window.open( "/movieinfo/tv/tv_detail.aspx?FilmId=" + nFilmId + "&ChannelId=" + nChannelId);
			break;
		case 34:
			window.open( "/movieinfo/adult/adult_detail.aspx?FilmId=" + nFilmId + "&ChannelId=" + nChannelId);
			break;
		case 37:
			window.open( "/movieinfo/cartoon/cartoon_detail.aspx?FilmId=" + nFilmId + "&ChannelId=" + nChannelId);
			break;
		default:
			window.open( "/movieinfo/movie_detail.aspx?FilmId=" + nFilmId + "&ChannelId=" + nChannelId);
			break;
	}
}
//影片播放页
function ShowMovie(nFilmId, strContentId, nChannelId)
{
	window.open("/player/play.aspx?ContentId=" + strContentId + "&FilmId=" + nFilmId + "&ChannelId=" + nChannelId, "play", "fullscreen,scrollbars=1");
}
//影片下载页
function ShowDrm(nFilmId, strContentId, nChannelId)
{
	window.open("/player/DownloadMovie.aspx?ContentId=" + strContentId + "&FilmId=" + nFilmId + "&ChannelId=" + nChannelId, "down", "toolbar=0,width=510,height=400,top=5,left=5");
}
//打开演员详细页
function showActor(strKeyName,intChannelId)
{
    strKeyName = escape(strKeyName);
    window.open( "/movieinfo/search.aspx?KeyType="+3+"&KeyName="+strKeyName+"&channelid="+intChannelId);
}
//打开导演详细页
function showDirector(strKeyName,intChannelId)
{
    strKeyName = escape(strKeyName);
    window.open( "/movieinfo/search.aspx?KeyType="+2+"&KeyName="+strKeyName+"&channelid="+intChannelId);
}
//加入收藏
/*function SaveFilm(nFilmId, strContentId, nChannelId)
{
	window.open("/usermanager/userservice/Addfavorite.aspx?contentid="+strContentId+"&channelid="+nChannelId, "favor","toolbar=0,top=5,left=5");
}*/
//专题js
function ShowZhuanTi(nFilmId,nChannelId,nSiteId)
{
	window.open( "/zhuanti/FilmMovieSpecial.aspx?SiteId=" + nSiteId + "&ChannelId=" + nChannelId + "&FilmId=" + nFilmId);
}