function playvod_tp(masterseq, vodseq, mode) {
	var url = "/cdn.nhn?m=play_baduk&mode=" + mode + "&masterseq=" + masterseq + "&vodseq=" + vodseq;
	var win = window.open(url, 'play', 'width=300, height=180');
}

function playlive_tp() {
	var url = "/cdn.nhn?m=play_baduk&mode=play&playmode=live&masterseq=0&vodseq=0&rand=" + Math.ceil(Math.random()*10000);
	var win = window.open(url, 'live', 'width=300, height=180');
}

function playvodsimple_tp(masterseq, vodseq, mode) {
	var url = "/cdn.nhn?m=play_baduk&mode=" + mode + "&masterseq=" + masterseq + "&vodseq=" + vodseq;
	var win = window.open(url, 'play', 'width=300, height=180');
}

function playvodsimplelist(masterseq, vodseq, pagemode) {
	location.href = "/lecture.nhn?m=listsubvod&mode=" + pagemode;
	playvodsimple(masterseq, vodseq, 'chkplay');
}

function playlive() {

	var iWidth = 390;
	var iHeight = 409; 
	var iLeft = (window.screen.availWidth - iWidth) / 2;
	var iTop = (window.screen.availHeight - iHeight) / 2;
	var url = "/cdn.nhn?m=play_baduk&playmode=live&masterseq=0&vodseq=0&rand=" + Math.ceil(Math.random()*10000);
	var nwin=window.open(url, "live", "height="+ iHeight+ ",width=" + iWidth + ",top=" + iTop + ",left=" + iLeft + ", resizable=yes,scrollbars=no,status=1,location=no");
}

function playvod(masterseq, vodseq){

	var iWidth = 390;
	var iHeight = 409; 
	var iLeft = (window.screen.availWidth - iWidth) / 2;
	var iTop = (window.screen.availHeight - iHeight) / 2;
	var url = "/cdn.nhn?m=play_baduk&masterseq=" + masterseq + "&vodseq=" + vodseq+"&rand=" + Math.ceil(Math.random()*10000);
	var nwin=window.open(url, "CDNPlayer", "height="+ iHeight+ ",width=" + iWidth + ",top=" + iTop + ",left=" + iLeft + ", resizable=yes,scrollbars=no,status=1,location=no");
}

function playfreevod(masterseq, vodseq){

	var iWidth = 390;
	var iHeight = 409; 
	var iLeft = (window.screen.availWidth - iWidth) / 2;
	var iTop = (window.screen.availHeight - iHeight) / 2;
	var nwin=window.open("/cdn.nhn?m=play_freebaduk&masterseq=" + masterseq + "&vodseq=" + vodseq, "CDNPlayer", "height="+ iHeight+ ",width=" + iWidth + ",top=" + iTop + ",left=" + iLeft + ", resizable=yes,scrollbars=no,status=1,location=no");
	nwin.focus();

}

function playvodsimple(masterseq, vodseq){

	var iWidth = 390;
	var iHeight = 409; 
	var iLeft = (window.screen.availWidth - iWidth) / 2;
	var iTop = (window.screen.availHeight - iHeight) / 2;
	var nwin=window.open("/cdnex.nhn?m=play_baduk&masterseq=" + masterseq + "&vodseq=" + vodseq, "CDNPlayer", "height="+ iHeight+ ",width=" + iWidth + ",top=" + iTop + ",left=" + iLeft + ", resizable=yes,scrollbars=no,status=1,location=no");

}
