/**
 *  vodOpen  ¹æ¼Û½ºÅ² ÆË¾÷
 * @parm    : mtype R-realmedia, W-windowmedia, H-highmedia
 * @parm    : ccode : ±³È¸ÄÚµå, scode : ¼³±³ÄÚµå, mode : C ¼º°¡
 */
function vodOpen(mtype, ccode, scode, bandwidth, mode)
{
	var url, wname, feature;

	wname = "";
	if (mtype=="W")
	{
		//2009.10.22 ÁÖ¼®Ã³¸®ÇÔ QUEENS
		//url = "http://tv.c3tv.com/comtv/sermonskin/vod_skin70.asp?chcode="+ccode+"&scode="+scode+"&bandwidth="+bandwidth+"&mode="+mode;
		//feature= "width=615,height=409,scrollbars=no";

		url = "http://tv.c3tv.com/comtv/sermonskin/sermon_vod_skin.asp?chcode="+ccode+"&scode="+scode+"&bandwidth="+bandwidth+"&mode="+mode;
		feature= "width=670,height=360,scrollbars=no";
	}
	else if(mtype=="R")
	{
		wname = "c3tv_real";
		url = "http://tv.c3tv.com/comtv/sermonskin/vod_skin70.asp?chcode="+ccode+"&scode="+scode+"&bandwidth="+bandwidth+"&mode="+mode;
		feature= "width=276 ,height=315 Scrollbars=no";
	}
	else if(mtype=="H")
	{
		url = "http://tv.c3tv.com/comtv/sermonskin/vod_skin70.asp?chcode="+ccode+"&scode="+scode+"&bandwidth="+bandwidth+"&mode="+mode;
		feature= "width=519,height=467,scrollbars=no";
	}
	window.open(url,wname,feature);
}