 function fnc_swf(objURL,objID,objWidth,objHeight){
  
  document.write("<OBJECT ID='" + objID + "' width='" + objWidth + "' height='" + objHeight + "' classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' standby='Loading Microsoft?Windows?Media Player components...' type='application/x-oleobject'>");
  document.write("<param name='movie' value='" + objURL + "'>");
  document.write("<param name='quality' value='high'>");
  document.write("<param name='wmode' value='transparent'>");
  document.write("<embed src='" + objURL + "' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='" + objWidth + "' height='" + objHeight + "'></embed>");
  document.write("</OBJECT>");
 
}

function fnc_live(objURL,objID,objWidth,objHeight,objType){
 //fnc_live('http://plive.assembly.go.kr/natv','liveplayer','320','309','1');
  document.write("<OBJECT ID='" + objID + "' width='" + objWidth + "' height='" + objHeight + "' classid='CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95' codebase='http://activex.microsoft.com/activex/controls/MediaPlayer1/en/nsmp2inf.cab#Version=6,4,5,715' standby='Loading Microsoft?Windows?Media Player components...' type='application/x-oleobject'>");
  document.write("<param name='FileName' value='"+ objURL + "'>");
  document.write("<param name='enableContextMenu' value='0'>");
  document.write("<param name='autoStart' value='1'>");
  document.write("<param name='ClickToPlay' value='0'>");  
  document.write("<param name='AnimationatStart' value='0'>");
  document.write("<param name='TransparentatStart' value='0'>");
  document.write("<param name='ShowStatusBar' value='" + objType + "'>");
  document.write("<param name='ShowControls' value='" + objType + "'>");
  document.write("<param name='AutoRewind' value='1'>");
  document.write("<embed type='application/x-mplayer2' pluginspage='http://www.microsoft.com/Windows/MediaPlayer/' src='" + objURL + "' name='" + objID + "' width='" + objWidth + "' height='" + objHeight + "' autostart='1' showcontrols='0' volume='-500'></embed>");
  document.write("</OBJECT>");

}

function fnc_natv(file_link, player_obj){
	document.write("<OBJECT ID='"+ player_obj +"' width='80' height='60' classid='CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6' codebase='http://activex.microsoft.com/activex/controls/MediaPlayer1/en/nsmp2inf.cab#Version=6,4,5,715' standby='Loading Microsoft?Windows?Media Player components...' type='application/x-oleobject'>");
	document.write("<param NAME='url' value='" + file_link + "'>");
	document.write("<param NAME='uiMode' value='none'>");
  document.write("<embed type='application/x-mplayer2' pluginspage='http://www.microsoft.com/Windows/MediaPlayer/' src='" + file_link + "' name='" + player_obj + "' width='80' height='60' autostart='1' showcontrols='0' volume='-500'></embed>");	
	document.write("</object>");
}


