

function InsertMOV(file)
{
  document.write('<object id="obj_MOV" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"');
  document.write('CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab" HEIGHT=320 WIDTH=480>\n');
  document.write('<param name="src" value="media/'+file+'" />\n');
  document.write('<EMBED SRC="media/'+file+'" HEIGHT=320 WIDTH=480 TYPE="video/quicktime" PLUGINSPAGE="http://www.apple.com/quicktime/download/" />');
  document.write('</object>\n');
}
/*
function InsertWMV(file)
{
  document.write('<object id="obj_WMV" type="video/x-ms-wmv" data="media/'+file+'" width="480" height="320">');
  document.write('<param name="fileName" value="media/'+file+'" />\n');
  document.write('<param name="src" value="media/'+file+'" />\n');
  document.write('<param name="autostart" value="true" />\n');
  document.write('<param name="controller" value="true" />');
  document.write('</object>\n');
}*/

function InsertWMV(file)
{
document.write('<OBJECT id="mediaPlayer" width="480" height="320" ');
document.write('classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" '); 
document.write('codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" ');
document.write('standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject">');
document.write('<param name="fileName" value="media/'+file+'">');
document.write('<param name="animationatStart" value="true">');
document.write('<param name="transparentatStart" value="true">');
document.write('<param name="autoStart" value="true">');
document.write('<param name="showControls" value="true">');
document.write('<param name="loop" value="true">');
document.write('<EMBED type="application/x-mplayer2"');
document.write('pluginspage="http://microsoft.com/windows/mediaplayer/en/download/"');
document.write('id="mediaPlayer" name="mediaPlayer" displaysize="4" autosize="-1" ');
document.write('bgcolor="darkblue" showcontrols="true" showtracker="-1" ');
document.write('showdisplay="0" showstatusbar="-1" videoborder3d="-1" width="320" height="285" ');
document.write('src="media/'+file+'" autostart="true" designtimesp="5311" loop="true">');
document.write('</EMBED>');
document.write('</OBJECT>');	
}

function InsertWMVLong()
{
  document.write('<object id="obj_WMVLong" type="video/x-ms-wmv" data="media/hastmannenTrailerWMV.wmv" width="480" height="320">');
  document.write('<param name="src" value="media/hastmannenEngWMV.wmv" />\n');
  document.write('<param name="autostart" value="true" />\n');
  document.write('<param name="controller" value="true" />');
  document.write('</object>\n');
}

function InsertMP4(file)
{
  document.write('<object id="obj_MP4" type="video/mp4" data="media/'+file+'" width="480" height="320">');
  document.write('<param name="src" value="media/'+file+'" />\n');
  document.write('<param name="autostart" value="true" />\n');
  document.write('<param name="controller" value="true" />');
    document.write('<EMBED SRC="media/'+file+'" HEIGHT=320 WIDTH=480 TYPE="video/mp4" AUTOPLAY="true" PLUGINSPAGE="http://www.apple.com/quicktime/download/" />');
  document.write('</object>\n');
}