  loadMov = function(id, file, width, height, autoplay, controller, loop)
  {
    document.getElementById(id).innerHTML =
    '<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" width="' + width + '" height="' + height + '">' +
    '  <param name="src" value="' + file + '" />' +
    '  <param name="autoplay" value="' + autoplay + '" />' +
    '  <param name="controller" value="' + controller + '" />' +
    '  <param name="loop" value="' + loop + '" />' +
    '  <embed src="' + file + '" width="' + width + '" height="' + height + '" autoplay="' + autoplay + '" controller="' + controller + '" loop="' + loop + '" pluginspage="http://www.apple.com/quicktime/download/" />' +
    '</object>';
  }