function createPlayer()
{
      var res="";
      res+='<OBJECT id="Player" width="320" height="290"  CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6"  type="application/x-oleobject">';
      res+='<PARAM NAME="URL" VALUE="<?php print $movie; ?>"/>';
      res+='<PARAM NAME="SendPlayStateChangeEvents" VALUE="True"/>';
      res+='<PARAM NAME="AutoStart" VALUE="True"/>';
      res+='<PARAM name="PlayCount" value="9999"/>';
      res+='<embed id="FFPlayer" name="FFPlayer" src="<?php print $movie; ?>" width="320" height="290" autostart="1" volume=-1 loop="0" ShowStatusBar=1 type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/download/default.asp" controller="true" filename="<?php print $movie; ?>" showdisplay="0" showcontrols="1" showpositioncontrols="1" showselectioncontrols="1" showtracker="1" moviewindowsize="1" fullscreenmode="0" autorewind="1" playcount="1" selectionstart="1" appearance="1" borderstyle="1" > </embed>';
      res+='</OBJECT>';
      return res;
}

function init()
{
      var playerlocation=document.getElementById("player-scherm");
      playerlocation.innerHTML=createPlayer();

}

