// VOD ÇÃ·¹ÀÌ¾î
function MakeObjectVOD(param)
{
	return "<OBJECT id='MediaPlayer' codebase='http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715' type='application/x-oleobject' height='100%' standby='Loading Microsoft Windows Media Player components...' width='100%'  classid='CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95' VIEWASTEXT><PARAM NAME='AllowScan' VALUE='-1'><PARAM NAME='AllowChangeDisplaySize' VALUE='-1'><PARAM NAME='AnimationAtStart' VALUE='0'><PARAM NAME='AudioStream' VALUE='-1'><PARAM NAME='AutoStart' VALUE='-1'><PARAM NAME='AutoSize' VALUE='0'><PARAM NAME='AutoResize' VALUE='-1'><PARAM NAME='AutoRewind' VALUE='0'><PARAM NAME='Balance' VALUE='0'><PARAM NAME='BaseURL' VALUE=''><PARAM NAME='BufferingTime' VALUE='5'><PARAM NAME='CaptioningID' VALUE=''><PARAM NAME='ClickToPlay' VALUE='1'><PARAM NAME='CursorType' VALUE='0'><PARAM NAME='CurrentPosition' VALUE='-1'><PARAM NAME='CurrentMarker' VALUE='0'><PARAM NAME='DefaultFrame' VALUE=''><PARAM NAME='DisplayBackColor' VALUE='0'><PARAM NAME='DisplayForeColor' VALUE='16777215'><PARAM NAME='DisplayMode' VALUE='0'><PARAM NAME='DisplaySize' VALUE='0'><PARAM NAME='Enabled' VALUE='-1'><PARAM NAME='EnableContextMenu' VALUE='0'><PARAM NAME='EnablePositionControls' VALUE='-1'><PARAM NAME='EnableFullScreenControls' VALUE='-1'><PARAM NAME='EnableTracker' VALUE='-1'><PARAM NAME='InvokeURLs' VALUE='-1'><PARAM NAME='Language' VALUE='-1'><PARAM NAME='PlayCount' VALUE='1'><PARAM NAME='PreviewMode' VALUE='0'><PARAM NAME='Rate' VALUE='1'><PARAM NAME='SAMILang' VALUE=''><PARAM NAME='SAMIStyle' VALUE=''><PARAM NAME='SAMIFileName' VALUE=''><PARAM NAME='SelectionStart' VALUE='-1'><PARAM NAME='SelectionEnd' VALUE='-1'><PARAM NAME='SendOpenStateChangeEvents' VALUE='-1'><PARAM NAME='SendWarningEvents' VALUE='-1'><PARAM NAME='SendErrorEvents' VALUE='-1'><PARAM NAME='SendKeyboardEvents' VALUE='0'><PARAM NAME='SendMouseMoveEvents' VALUE='0'><PARAM NAME='SendPlayStateChangeEvents' VALUE='-1'><PARAM NAME='ShowCaptioning' VALUE='0'><PARAM NAME='ShowControls' VALUE='-1'><PARAM NAME='ShowAudioControls' VALUE='-1'><PARAM NAME='ShowDisplay' VALUE='False'><PARAM NAME='ShowGotoBar' VALUE='0'><PARAM NAME='ShowPositionControls' VALUE='-1'><PARAM NAME='ShowStatusBar' VALUE='-1'><PARAM NAME='ShowTracker' VALUE='-1'><PARAM NAME='TransparentAtStart' VALUE='True'><PARAM NAME='VideoBorderWidth' VALUE='0'><PARAM NAME='VideoBorderColor' VALUE='0'><PARAM NAME='VideoBorder3D' VALUE='0'><PARAM NAME='Volume' VALUE='1000'>"+param+"</object>";
}

// ÇÃ·¡½Ã ÇÃ·¹ÀÌ¾î
function MakeFlashString(source,width,height)
{	
	return "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='" + width + "' height='" + height + "'><param name='movie' value='" + source + "'><param name='quality' value='high'><embed src='" + source + "' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='" + width + "' height='" + height + "'></embed></object>";
}

// innerHTML Type
function SetInnerHTML(target, code)
{ 
	target.innerHTML = code; 
}