function playMovie(file,width,height) { 
        document.write("<object classid='clsid:02bf25d5-8c17-4b23-bc80-d3488abddc6b' codebase='http://www.apple.com/qtactivex/qtplugin.cab' width='"+width+"' height='"+height+"' id='mov_movie'>");

        document.write("<param name='src' value='"+file+"'>"); 
        document.write("<param name='cache' value='true'>"); 
        document.write("<param name='autoplay' value='true'>"); 
        document.write("<param name='controller' value='true'>"); 
        document.write("<embed name='mov_movie' src='"+file+"' width='"+width+"' height='"+height+"' controller='true' autoplay='true' cache='true'></embed>");

        document.write("</object>"); 
} 