function loadQT(path,movie,width,height) {
    //workaround for Microsoft 'feature' of making you click on QT to activate it
    //pass in the swf file you're trying to load and the associated query string to pass into Flash
    document.writeln('<object CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" WIDTH="'+ width +'" HEIGHT="'+ height +'" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab">');
    document.writeln('<param name="SRC" VALUE="'+ path + movie + '.mov">');
    document.writeln('<param name="AUTOPLAY" VALUE="true">');
    document.writeln('<param name="CONTROLLER" VALUE="true">');
    document.writeln('<embed src="' + path + movie + '.mov" width="'+ width +'" height="'+ height +'" autoplay="true" loop="false" controller="true" playeveryframe="false" cache="false" bgcolor="#FFFFFF" kioskmode="true" targetcache="false" pluginspage="http://www.apple.com/quicktime/">');
    document.writeln('</embed>');
    document.writeln('</object>');
}

