function InsertMovie(file) {
document.write('<OBJECT CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" WIDTH="720" HEIGHT="500" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab">\n');
document.write('<PARAM name="SRC" VALUE="'+file+'">\n');
document.write('<PARAM name="AUTOPLAY" VALUE="true">\n');
document.write('<PARAM name="CONTROLLER" VALUE="true">\n');
document.write('<EMBED SRC="'+file+'" WIDTH="720" HEIGHT="500" AUTOPLAY="true" CONTROLLER="true" PLUGINSPAGE="http://www.apple.com/quicktime/download/">\n');
document.write('</EMBED>\n');
document.write('</OBJECT>\n');
}

function InsertFlashMovie(file) {
document.write('<object type="application/x-shockwave-flash" width="720" height="500" wmode="window" data="/flvplayer.swf?file='+file+'&autoStart=true">\n');
document.write('<param name="movie" value="/flvplayer.swf?file='+file+'&autoStart=true" />\n');
document.write('<param name="wmode" value="window" />\n');
document.write('<param name="bgcolor" value="#FFFFFF" />\n');
document.write('</object>\n');
}

function InsertFlashMovieSmall(file) {
document.write('<object type="application/x-shockwave-flash" width="500" height="395" wmode="window" data="/flvplayer.swf?file='+file+'&autoStart=true">\n');
document.write('<param name="movie" value="/flvplayer.swf?file='+file+'&autoStart=true" />\n');
document.write('<param name="wmode" value="window" />\n');
document.write('<param name="bgcolor" value="#FFFFFF" />\n');
document.write('</object>\n');
}