//影片详细页
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("http://user.bbvod.net/newplayer/play.aspx?ContentId=" + strContentId + "&FilmId=" + nFilmId + "&ChannelId=" + nChannelId, "play", "toolbar=0,width=796,height=700,top=5,left=5,scrollbars=1,resizable=1");
}
//影片下载页
function ShowDrm(nFilmId, strContentId, nChannelId)
{
	window.open("http://user.bbvod.net/newplayer/DownloadMovie.aspx?ContentId=" + strContentId + "&FilmId=" + nFilmId + "&ChannelId=" + nChannelId, "down", "toolbar=0,width=796,height=700,top=5,left=5,scrollbars=1,resizable=1");
}
//打开演员详细页
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("http://user.bbvod.net/usermanager/userservice/Addfavorite.aspx?contentid="+strContentId+"&channelid="+nChannelId, "favor","toolbar=0,width=796,height=700,top=5,left=5,scrollbars=1,resizable=1");
}
//专题js
function ShowZhuanTi(nFilmId,nChannelId,nSiteId)
{
	window.open( "/zhuanti/FilmMovieSpecial.aspx?SiteId=" + nSiteId + "&ChannelId=" + nChannelId + "&FilmId=" + nFilmId);
}
//生活秀
function ShowArticle(Aid)
{
	window.open( "/lifeshow/lifeshowArticle.aspx?id=" + Aid);
}