function InsertMovie(name)
{ // write HTML code to embed the given movie ...
  document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab" width=279 height=175>\n');
  document.write('<embed src="' + name + '" width=279 height=175 autoplay=no bgcolor=#000000 kioskmode=true scale=aspect />\n');
  document.write('</object>\n');
}

