function InsertMovie( fn ) {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab">');
	document.write('  <param name="SRC" value="' + fn + '.mov">');
	document.write('  <param name="AUTOPLAY" value="true">');
	document.write('  <param name="CONTROLLER" value="true">');
	document.write('<embed src="' + fn + '.mov" width="320" height="256" autoplay="true" controller="true" pluginspage="http://www.apple.com/quicktime/download/" scale="tofit" bgcolor="#777777">');
	document.write('</embed>');
	document.write('</object>');
}