function InsertQuickTimeMovie(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 InsertYouTubeMovie(youTubeLink, imagelink) {
document.write('<object type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" showinfo="false" width="425" height="344" image="'+imagelink+'" data="/flvplayer.swf?file='+youTubeLink+'&rel=0&autoplay=1">\n');
document.write('<param name="movie" value="'+youTubeLink+'&autoplay=1&fs=1&color1=0x402061&color2=0x522672&rel=0" />\n');
document.write('<EMBED SRC="'+youTubeLink+'&fs=1&color1=0x402061&color2=0x522672&rel=0&autoplay=1" type="application/x-shockwave-flash" allowscriptaccess="always" showinfo="false" allowfullscreen="true" width="425" height="344" image="'+imagelink+'">\n');
document.write('</EMBED>\n');
document.write('</object>\n');
}

