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