﻿// JScript File

function fnMediaPlayer(iWidth, iHeight, sFileName)
{
  document.write('<object id="MediaPlayer" width="' + iWidth + '" height="' + iHeight + '" classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715" standby="Loading Microsoft® Windows® Media Player components..." type="application/x-oleobject">');
  document.write('<param name="AutoStart" value="True" />');
  document.write('<param name="Filename" value="' + sFileName + '" />');
  document.write('<param name="ShowControls" value="False" />');
  document.write('<param name="ShowStatusBar" value="False" />');
  document.write('<embed id="MediaPlayer2" type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" src="' + sFileName + '" width="' + iWidth + '" height="' + iHeight + '" autostart="1" showcontrols="0"></embed>');
  document.write('</object>');
}


