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