/*---------------------------------------------------------------------------------------------
                                      JAVASCRIPT CODE                                          
  ---------------------------------------------------------------------------------------------
	function name						| description				| use process
  ---------------------------------------------------------------------------------------------
	viewFlash()							| ÇÃ·¡½Ã Ãâ·Â					| ÇÃ·¡½Ã Ãâ·Â
  ---------------------------------------------------------------------------------------------*/



// ÇÃ·¡½Ã Ãâ·Â
function viewFlash(src, width, height)
{
	document.write("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0' width='"+width+"' height='"+height+"' id='FLVPlayer' align='top'><param name='allowScriptAccess' value='always' /><param name='allowFullScreen' value='true' /><param name='movie' value='"+src+"' /><param name='quality' value='high' /><embed src='" + src + "' quality='high' pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash' type='application/x-shockwave-flash' width='" + width + "' height='" + height + "' wmode='transparent'></embed></object>");
}


function viewFlash_tv(src, width, height)
{
	document.write("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0' width='"+width+"' height='"+height+"' id='FLVPlayer' align='top'><param name='allowScriptAccess' value='always' /><param name='allowFullScreen' value='true' /><param name='movie' value='"+src+"' /><param name='quality' value='high' /><embed src='" + src + "' quality='high' pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash' type='application/x-shockwave-flash' width='" + width + "' height='" + height + "' bgcolor='#353536' ALIGN='bottom'></embed></object>");
}

// ÇÁ¸®¿¡±× µ¿¿µ»ó
function viewFlashVod(src, width, height)
{
	document.write("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0' width='"+width+"' height='"+height+"' id='FLVPlayer' align='top'><param name='allowScriptAccess' value='always' /><param name='bgcolor' value='#000000' /><param name='allowFullScreen' value='true' /><param name='movie' value='"+src+"' /><param name='quality' value='high' /><embed src='"+src+"' quality='high' bgcolor='#000000' width='"+width+"' height='"+height+"' name='FLVPlayer' align='top' allowScriptAccess='always' allowFullScreen='true' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' /></embed></object>");
}


// µ¿¿µ»óº¸±â - Å×µÎ¸® ¾È³ª¿À°Ô
function vodView(url, width, height, autostart, showcontrols, showstatusbar) {
    var width_val = 320;
    var height_val = 240;
    if(width) width_val = width;
    if(height) height_val = height;

	str="<embed animationatstart='0' autostart='"+autostart+"' displaybackcolor='black' showcontrols='"+showcontrols+"' showstatusbar='"+showstatusbar+"' showtracker='1' showpositioncontrols='0' pluginspage='http://www.microsoft.com/korea/windows/windowsmedia/' src='"+url+"' type='video/x-ms-asf-plugin' height='"+height_val+"' width='"+width_val+"'></embed>";
	document.write(str);
}

