function insertMovie(movie_file, poster_file)
{
  document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="480" height="286" codebase="http://www.apple.com/qtactivex/qtplugin.cab">\n');
  document.write('<param name="SRC" value="/trailer/"'+poster_file+'" />\n');
  document.write('<param name="AUTOPLAY" value="true" />\n');
  document.write('<param name="LOOP" value="false" />\n');
  document.write('<param name="CONTROLLER" value="false" />\n');
  document.write('<param name="CACHE" value="false" />\n');
  document.write('<param name="HREF" value="'+movie_file+'" />\n');
  document.write('<param name="TARGET" value="myself" />\n');
  document.write('<param name="BGCOLOR" value="#000000" />\n');
  document.write('<param name="KIOSKMODE" value="false" />\n');
  document.write('<param name="TARGETCACHE" value="false" />\n');
  document.write('<embed src="/trailer/'+poster_file+'" width="480" height="286" autoplay="true" loop="false" controller="false" playeveryframe="false" cache="false" href="'+movie_file+'" target="myself" bgcolor="#000000" kioskmode="false" targetcache="false" pluginspage="http://www.apple.com/quicktime/download"></embed>\n');
  document.write('</object>\n');
}