
/**
 * DivId    : html º»¹®¿¡¼­ popPlayer °¡ À§Ä¡ÇÒ ¿µ¿ª
 * Url      : popPlayer swf ÆÄÀÏÀÇ °æ·Î. ¼­¹ö¿¡ À§Ä¡ÇÏ¿© Áß¾Ó¿¡¼­ °ü¸®ÇÒ ¼ö ÀÖµµ·Ï 
              Àý´ë °æ·Î·Î ÇÏ´Â °ÍÀ» ÃßÃµ
 * Skin     : popPlayerÀÇ ½ºÅ². »ç¿ëÇÒ ½ºÅ²ÀÌ ¾ø´Â °æ¿ì °ø¹éÀ¸·Î Ã³¸®
 * Width    : PopPlayerÀÇ width
 * Height   : PopPlayerÀÇ height
 * VideoUrl : PopPlayer¿¡¼­ º¸¿©ÁÙ flv ÆÄÀÏÀÇ Àý´ë °æ·Î
 * Top      : PopPlayerÀÇ width
 * Left     : PopPlayerÀÇ width
 *
 */
function showPopPlayer(DivId,Url,Skin,Width,Height,VideoUrl)
{
	var divPlayer = document.getElementById(DivId);
	var inHtml = "";

	var flashvars = "videoUrl="+VideoUrl;
	flashvars += "&videoWidth="+Width;
	flashvars += "&videoHeight="+Height;
	flashvars += "&videoSkin="+Skin;

	divPlayer.style.width = Width;
	divPlayer.style.height = Height;

	inHtml += "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" width=\"" + Width + "\" height=\"" + Height + "\">"; 
	inHtml += "<param name=\"scale\" value=\"exactfit\" />"; 
	inHtml += "<param name=\"allowScriptAccess\" value=\"always\" />"; 
	inHtml += "<param name=\"allowFullScreen\" value=\"false\" />"; 
	inHtml += "<param name=\"movie\" value=\"" + Url + "\">"; 
	inHtml += "<param name=\"quality\" value=\"high\" />";     
	inHtml += "<param name=\"bgcolor\" value=\"#000000\" />"; 
	inHtml += "<param name=\"base\" value=\".\">"; 
	inHtml += "<param name=\"wmode\" value=\"transparent\">"; 

	inHtml += "<param name=\"FlashVars\" value=\""+flashvars+"\">"; 

	inHtml += "<embed src=\"" + Url + "\" quality=\"high\" bgcolor=\"#000000\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"" + Width + "\"  height=\"" + Height + " FlashVars=\""+flashvars+"\" scale=\"exactfit\" />"; 
	inHtml += "</object>"; 

	divPlayer.innerHTML = inHtml;
}

function hidePopPlayer(DivId)
{
	var divPlayer = document.getElementById(DivId);

	divPlayer.innerHTML = "";
}

/**
 * width  : 350
 * height : 510
 */
function showOvsPlayer(DivId,Url,Skin,Width,Height,VideoUrl)
{
	var divPlayer = document.getElementById(DivId);
	var inHtml = "";

	var flashvars = "videoUrl="+VideoUrl;
	flashvars += "&videoWidth="+Width;
	flashvars += "&videoHeight="+Height;
	flashvars += "&videoSkin="+Skin;

	divPlayer.style.width = Width;
	divPlayer.style.height = Height;

	inHtml += "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" width=\"" + Width + "\" height=\"" + Height + "\">"; 
	inHtml += "<param name=\"scale\" value=\"exactfit\" />"; 
	inHtml += "<param name=\"allowScriptAccess\" value=\"always\" />"; 
	inHtml += "<param name=\"allowFullScreen\" value=\"false\" />"; 
	inHtml += "<param name=\"movie\" value=\"" + Url + "\">"; 
	inHtml += "<param name=\"quality\" value=\"high\" />";     
	inHtml += "<param name=\"bgcolor\" value=\"#000000\" />"; 
	inHtml += "<param name=\"base\" value=\".\">"; 
	inHtml += "<param name=\"wmode\" value=\"transparent\">"; 

	inHtml += "<param name=\"FlashVars\" value=\""+flashvars+"\">"; 

	inHtml += "<embed src=\"" + Url + "\" quality=\"high\" bgcolor=\"#000000\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"" + Width + "\"  height=\"" + Height + " FlashVars=\""+flashvars+"\" scale=\"exactfit\" />"; 
	inHtml += "</object>"; 

	divPlayer.innerHTML = inHtml;
}

function hideOvsPlayer(DivId)
{
	var divPlayer = document.getElementById(DivId);

	divPlayer.innerHTML = "";
}

