/**
 *  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.13 »õ·Î¿î ÀÏ¹ÝÈ­Áú ½ºÅ²À¸·Î ±âÁ¸ ÀÏ¹ÝÈ­Áú ½ºÅ² ÁÖ¼Ò ÁÖ¼® Ã³¸®
		//url = "/comtv/sermonskin/sermon_skin.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 = "/comtv/sermonskin/sermon_realskin.asp?chcode="+ccode+"&scode="+scode+"&bandwidth="+bandwidth+"&mode="+mode;
		url = "http://tv.c3tv.com/comtv/sermonskin/sermon_realskin.asp?chcode="+ccode+"&scode="+scode+"&bandwidth="+bandwidth+"&mode="+mode;
		feature= "width=276 ,height=315 Scrollbars=no";
	}
	else if(mtype=="H")
	{
		// 2009.11.02 »õ·Î¿î °íÈ­Áú ½ºÅ²À¸·Î ±âÁ¸ °íÈ­Áú ½ºÅ² ÁÖ¼Ò ÁÖ¼® Ã³¸®
    //url = "/comtv/sermonskin/sermon_high_skin.asp?chcode="+ccode+"&scode="+scode+"&bandwidth="+bandwidth+"&mode="+mode;
		//feature= "width=519,height=467,scrollbars=no";

		url = "http://tv.c3tv.com/comtv/sermonskin/sermon_high_vod_skin.asp?chcode="+ccode+"&scode="+scode+"&bandwidth="+bandwidth+"&mode="+mode;
		feature= "width=990,height=576,scrollbars=no";
	}
	else if(mtype=="Live")
	{
		url = "http://tv.c3tv.com//comtv/sermonskin/livesermon_skin.asp?chcode="+ccode+"&mode="+mode;
		feature= "width=519,height=467,scrollbars=no";
	}
	window.open(url,wname,feature);
}