// playObject( swf_filepath, width, height, wtransparent¸é 1, ¾Æ´Ï¸é 0 );
//========================================================================//
function playObject( sObjSrc, nWidth, nHeight, sWMode ){
  document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' ");
  document.write("codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' ");
  document.write("width='" + nWidth + "' height='" + nHeight + "'>");
  document.write("<param name='movie' value='" + sObjSrc + "'>");
  document.write("<param name='quality' value='high'>");
  if( sWMode == 1 )
    document.write("<param name='wmode' value='transparent'>");
  document.write("<embed src='" + sObjSrc + "' ");
  document.write("quality='high' ");
  document.write("pluginspage='http://www.macromedia.com/go/getflashplayer' ");
  document.write("type='application/x-shockwave-flash' ");
  document.write("width='" + nWidth + "' height='" + nHeight + "'></embed> ");
  document.write("</object>");
}


function playEmbed( sObjSrc, nWidth, nHeight ){
  document.write("<object classid='clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95' ");
  document.write("codebase='http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715' ");
  document.write("width='" + nWidth + "' height='" + nHeight + "'>");
  document.write("<param name='Filename' value='" + sObjSrc + "'>");
  document.write("<param name='AutoStart' value='false'>");
  document.write("<param name='ShowTracker' value='false'>");
  document.write("<param name='ShowControls' value='true'>");
  document.write("<param name='ShowGotoBar' value='false'>");
  document.write("<param name='ShowDisplay' value='false'>");
  document.write("<param name='ShowStatusBar' value='false'>");
  document.write("<param name='AutoSize' value='false'>");
  document.write("<param name='PlayCount' value='0'>");
  document.write("<embed src='" + sObjSrc + "' ");
  document.write("AutoStart='false' ShowTracker='false' ShowControls='true' ShowGotoBar='false' ShowDisplay='false' ShowStatusBar='false' AutoSize='false' PlayCount='0' ");
  document.write("pluginspage='http://www.microsoft.com/windows/windowsmedia/download/' ");
  document.write("width='" + nWidth + "' height='" + nHeight + "'></embed> ");
  document.write("</object>");
}
