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=350 WIDTH=350>\n');
  document.write('<param name="src" value="media/'+file+'" HEIGHT=350 WIDTH=350 />\n');
  document.write('<param name="controller" value="true" />\n');
  document.write('<param name="loop" value="false" />\n');
  document.write('<EMBED SRC="media/'+file+'" TYPE="video/quicktime" LOOP="false" HEIGHT=350 WIDTH=350 CONTROLLER="true" PLUGINSPAGE="http://www.apple.com/quicktime/download/" />');
  document.write('</object>\n');
}


function InsertHeaderMOV(file)
{
  document.write('<object id="obj_MOVHead" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"');
  document.write('CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab" HEIGHT=150 WIDTH=180 style="margin:0px;">\n');
  document.write('<param name="src" value="media/'+file+'" HEIGHT=150 WIDTH=180 />\n');
  document.write('<param name="controller" value="false" />\n');
  document.write('<param name="loop" value="true" />\n');
  document.write('<param name="cache" value="true" />\n');
  document.write('<noembed></noembed>');
  document.write('<EMBED SRC="media/'+file+'" TYPE="video/quicktime" CONTROLLER="false" LOOP="true" HEIGHT=150 WIDTH=180 PLUGINSPAGE="http://www.apple.com/quicktime/download/" />');
  document.write('</object>\n');
}
