function insert_movie(mov_width,mov_height,is_msie) {
document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" width="'+mov_width+'" height="'+mov_height+'"');
if (is_msie) {
document.write('id="moviePlayer"');
}
document.write(' />\n');
document.write('<param name="src" value="/img/common/x.gif">\n');
document.write('<param name="autoplay" value="true">\n');
document.write('<param name="controller" value="auto">\n');
document.write('<embed src="/img/common/x.gif"\n');
document.write('controller="true"\n');
document.write('width="'+mov_width+'"\n');
document.write('height="'+mov_height+'"\n');
document.write('type="video/quicktime"\n');
document.write('pluginspage="http://www.apple.com/quicktime/download/"\n');
document.write('id="movie_player" />\n');
document.write('</object>\n');
}

