function insert_movie(file,width,height) {
	height = height + 16;
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="'+width+'" height="'+height+'" codebase="http://www.apple.com/qtactivex/qtplugin.cab">');
	document.write('<param name="src" value="'+file+'">');
	document.write('<param name="autoplay" value="false">');
	document.write('<param name="controller" value="true">');
	document.write('<param name="volume" value="100">');
	document.write('<param name="bgcolor" value="black" />');
	document.write('<param name="showlogo" value="false" />');
	document.write('<embed src="'+file+'" width="'+width+'" height="'+height+'" autoplay="false" controller="true" volume="100" bgcolor="black" showlogo="false" pluginspage="http://www.apple.com/quicktime/download/"></embed>');
	document.write('</object>');

	document.write('<p class="small" style="text-align: center">To view the movie, the latest <a href="http://www.apple.com/quicktime/" target="_blank">QuickTime plugin</a> is required</p>');
}
