function insert_movie(movie, 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 + '" height="' + height + '">');
        document.write('<param name="src" value="' + movie + '">');
        document.write('<param name="controller" value="true">');
        document.write('<param name="autoplay" value="false">');

        document.write('<!--[if gte IE 7]> <!-->');
        document.write('<object type="video/quicktime" data="' + movie + '" width="' + width + '" height="' + height + '">');
        document.write('<param name="controller" value="true">');
        document.write('<param name="autoplay" value="false">');
       	document.write('</object>');
       	document.write('<!--<![endif]-->');
       	document.write('</object>');
}