var agt = navigator.userAgent.toLowerCase();
is_ie = ((agt.indexOf("msie") != -1) && (agt.indexOf("opera") == -1));

function InsertSampleMovie(moviePath, aPlay, showContr)
{
document.write('<object classid="clsid: 02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" width="auto" height="auto">\n');
document.write('<param name="src" value="img/bulbon.gif" />\n');
document.write('<param name="href" value="'+moviePath+'" />\n');
document.write('<param name="autoplay" VALUE="'+aPlay+'" />\n');
document.write('<param name="controller" VALUE="'+showContr+'" />\n');
document.write('<EMBED SRC="'+moviePath+'" AUTOPLAY="'+aPlay+'" controller="'+showContr+'" pluinspace="http://www.apple.com/quicktime/download/"></EMBED>\n');
document.write('</object>\n');
}
