function CreateQuicktimeCode(Url, Width, Height) {
  document.write('<embed'
    + ' src="' + Url + '"'
  	+ ' width="' + Width + '"'
  	+ ' height="' + Height + '"'
  	+ ' controller="true"'
    + ' loop="false"'
    + ' autoplay="true"'
    + ' scale="tofit"'
    + ' border="0"'
    + ' bgcolor="black">'
  );  
}
function CreateWindowsMediaCode(Url, Width, Height) {
  document.write('<object'
    + ' id="MediaPlayer"'
    + ' 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"'
    + ' width="' + Width + '"'
    + ' height="' + Height + '"'
    + ' ><param'
    + ' name="FileName" value="' + Url + '"/><param'
    + ' name="AnimationatStart" value="true"/><param'
    + ' name="TransparentatStart" value="false"/><param'
    + ' name="AutoStart" value="true"/><param'
    + ' name="ShowControls" value="1"/><param'
    + ' name="stretchToFit" value="true"/><param'
    + ' name="ShowStatusBar" value="1"/><embed'
    + ' type="application/x-mplayer2"'
    + ' pluginspage="http://www.microsoft.com/isapi/redir.dll?prd=windows&sbp=mediaplayer&ar=Media&sba=Plugin&"'
    + ' src="' + Url + '"'
    + ' name="MediaPlayer"'
    + ' showcontrols="1"'
    + ' showstatusbar="1"'
    + ' animationatstart="true"'
    + ' width="' + Width + '"'
    + ' height="' + Height + '"'
    + ' stretchToFit="true"'
    + '></embed></object>'
  );
}
function CreateRealMediaCode(Url, Width, Height) {
  document.write('<object'
    + ' id="video"'
    + ' classid="clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA"'
    + ' width="' + Width + '"'
    + ' height="' + Height + '"<param'
    + ' name="controls" value="ImageWindow"/><param'
    + ' name="nologo" value="true"/><param'
    + ' name="console" value="video"/><param'
    + ' name="autostart" value="true"/><param'
    + ' name="src" value="' + Url + '"/><embed'
    + ' src="' + Url + '"'
    + ' type="audio/x-pn-realaudio-plugin"'
    + ' width="' + Width + '"'
    + ' height="' + Height + '"'
    + ' nologo="true"'
    + ' autostart="true"'
    + ' controls="ImageWindow"'
    + ' console="video"></embed><embed'
    + ' src="' + Url + '"'
    + ' type="audio/x-pn-realaudio-plugin"'
    + ' width="' + Width + '"'
    + ' height="26"'
    + ' autostart="true"'
    + ' controls="ControlPanel"'
    + ' console="video"></embed></object>'
  );
}
