//ÀÌ¹ÌÁö ·Ñ¿À¹ö 
function bt(id,after){ 
eval(id+'.filters.blendTrans.stop();'); 
eval(id+'.filters.blendTrans.Apply();'); 
eval(id+'.src="'+after+'";'); 
eval(id+'.filters.blendTrans.Play();'); 
}

//µ¿¿µ»ó ¾×Æ¼ºê X ÆÐÄ¡
function player(src, w, h)
{
	html = '';
	html += '<OBJECT id=VOD ';
	html += '      codeBase=http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,0,5,0803 ';
	html += '      type=application/x-oleobject height='+h+' ';
	html += '      standby="Loading Windows Media Player components..." width='+w+' ';
	html += '      classid=CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95>';
	html += '<PARAM NAME="FileName" VALUE="'+src+'">';
	html += '<PARAM NAME="transparentAtStart" VALUE="True">';
	html += '<PARAM NAME="transparentAtStop" VALUE="False">';
	html += '<PARAM NAME="AnimationAtStart" VALUE="False">';
	html += '<PARAM NAME="AutoStart" VALUE="false">';
	html += '<PARAM NAME="AutoRewind" VALUE="true">';
	html += '<PARAM NAME="SendMouseClickEvents" VALUE="0">';
	html += '<PARAM NAME="DisplaySize" VALUE="0">';
	html += '<PARAM NAME="AutoSize" VALUE="0">';
	html += '<PARAM NAME="ShowDisplay" VALUE="0">';
	html += '<PARAM NAME="ShowStatusBar" VALUE="0">';
	html += '<PARAM NAME="ShowControls" VALUE="0">';
	html += '<PARAM NAME="ShowTracker" VALUE="0">';
	html += '<PARAM NAME="Enabled" VALUE="1">';
	html += '<PARAM NAME="EnableContextMenu" VALUE="0">';
	html += '<PARAM NAME="EnablePositionControls" VALUE="0">';
	html += '<PARAM NAME="AllowChangeDisplaySize" VALUE="0">';
	html += '<PARAM NAME="EnableFullScreenControls" VALUE="0">';
	html += '<PARAM NAME="ShowPositionControls" VALUE="0">';
	html += '<PARAM NAME="SendKeyboardEvents" VALUE="1">';
	html += '<PARAM NAME="Mute" VALUE="0">';
	html += '<PARAM NAME="Rate" VALUE="1">';
	html += '<PARAM NAME="SAMILang" VALUE="">';
	html += '<PARAM NAME="SAMIStyle" VALUE="">';
	html += '<PARAM NAME="SAMIFileName" VALUE="">';
	html += '<PARAM NAME="ClickToPlay" VALUE="0">';
	html += '<PARAM NAME="CursorType" VALUE="1">';
	html += '</OBJECT>';

	document.write(html);
}