<!--
function insertMPEG(movie_path){
document.write('<object id="MediaPlayer" width=320 height=290 classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" standby="Loading Microsoft® Windows® Media Player components..." type="video/mpeg" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112">\n');
document.write('<PARAM NAME="filename" VALUE="' + movie_path + '">\n');
document.write('<PARAM NAME="autoStart" VALUE="false">\n');
document.write('<PARAM NAME="showControls" VALUE="true">\n');
document.write('<param name="ShowStatusBar" value="false">\n');
document.write('<PARAM NAME="Autorewind" VALUE="true">\n');
document.write('<PARAM NAME="ShowDisplay" VALUE="false">\n'); 
document.write('<EMBED SRC="' + movie_path + '" WIDTH=320 HEIGHT=290 type="application/x-mplayer2" name="MediaPlayer" autostart=0 showcontrols=1 showstatusbar=0 autorewind=1 showdisplay=0>\n');
document.write('</EMBED>\n');
document.write('</OBJECT>\n');
}
//-->
