function InsertMovie(movieURL, width, height) {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" '+ 
      'codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="' + height +
      '" width="' + width + '" bgcolor="black">\n');
	document.write('<param name="src" value=' + movieURL + '>\n');
	document.write('<param name="autoplay" value="true">\n');
	document.write('<param name="type" value="video/quicktime" height="' + height +
      '" width="' + width + '">\n');
    document.write('<param name="scale" value="tofit">\n');
	document.write('<param name="controller" value="true" bgcolor="black">\n');
	document.write('<embed src=' + movieURL + ' height="' + height + '" width="' + width +
      '" scale="tofit" autoplay="true" type="video/quicktime" ' +
      'pluginspage="http://www.apple.com/quicktime/download/" bgcolor="black">\n');
	document.write('</object>\n');
}