// Insert QuickTime Movies
// (C) 2006 Wei-Quin Wong

function insertQTMovie (moviePath) {
  document.write ("<OBJECT CLASSID='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' WIDTH='320' HEIGHT='256'");
  document.write (" CODEBASE='http://www.apple.com/qtactivex/qtplugin.cab'>");
  document.write ("  <PARAM name='SRC' VALUE='" + moviePath + "' >");
  document.write ("  <PARAM name='AUTOPLAY' VALUE='false'>");
  document.write ("  <PARAM name='CONTROLLER' VALUE='true'>");
  document.write ("  <EMBED SRC='" + moviePath +"' WIDTH='320' HEIGHT='256' AUTOPLAY='false' CONTROLLER='true'");
  document.write ("   PLUGINSPAGE='http://www.apple.com/quicktime/download/'>");
  document.write ("  </EMBED>");
  document.write ("</OBJECT>");
}

