/**************************************************************************************************
* Function : ShowWinPlayer
* Description : <object>  ÅÂ±× ¿ÜºÎ½ÇÇàÇüÅÂ·Î º¯Çü
*
* Parameters
* - iwidth		: Æø
* - iheight		: ³ôÀÌ
*
* Return			: ÅÂ±×Á¶ÇÕ.
***************************************************************************************************/
function ShowWinPlayer(iwidth, ihegiht)
{
	var _showplayer = '';

	_showplayer = '<OBJECT ID="Player" width='+ iwidth +' height='+ ihegiht +'  CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">';
	_showplayer = _showplayer + '<PARAM name="autoStart" value="True">';
	_showplayer = _showplayer + '<PARAM name="URL" value="/images/vod01.wmv">';
	_showplayer = _showplayer + '<PARAM name="uiMode" value="none">';	
	_showplayer = _showplayer + '</object>';
  
    document.write(_showplayer);
}