// JS call of movie necessary per Apple to overcome IE shortcomings (on-screen dialog box asking to run ActiveX control)
function InsertMovie()
{
document.write('<OBJECT HEIGHT=240 WIDTH=400 CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" CODEBASE"http://www.apple.com/qtactivex/qtplugin.cab">\n');
document.write('<PARAM NAME="src" VALUE="http://www.bearmountain.com/videos/video_safety.mov" >\n');
document.write('<PARAM NAME="autoplay" VALUE="false" >\n');
document.write('<PARAM NAME="controller" VALUE="true" >\n');
document.write('<PARAM NAME="loop" VALUE="false" >\n');
document.write('<PARAM NAME="scale" VALUE="ToFit" >\n');
document.write('<EMBED HEIGHT=240 WIDTH=400 TYPE="video/quicktime" PLUGINSPAGE="http://www.apple.com/quicktime/download/" SRC="http://www.bearmountain.com/videos/video_safety.mov" AUTOPLAY="false" CONTROLLER="true" SCALE="ToFit" LOOP="false"/>\n');
document.write('</OBJECT>\n');
}
