function insertQuicktimeMovie(id, src, width, height, autostart, showcontrols, repeat)
{

    var _quicktimePlayerClassId = "CLSID:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B";
    var _quicktimePlayerCodeBase = "http://www.apple.com/qtactivex/qtplugin.cab";
    var _quicktimePlayerPluginPage = "http://www.apple.com/quicktime/download/";
        
    document.write("<object classid=\"" + _quicktimePlayerClassId + "\" codebase=\"" + _quicktimePlayerCodeBase + "\" standby=\"Loading Apple Quicktime components...\" type=\"application/x-oleobject\" id=\"" + id + "\" ");
    document.write("width=\"" + width + "\" height=\"" + height + "\">\n");
    document.write("<param name=\"src\" value=\"" + src + "\" />\n");
    document.write("<param name=\"wmode\" value=\"opaque\" />\n");
    document.write("<param name=\"autoplay\" value=\"" + autostart + "\" />\n");
    document.write("<param name=\"controller\" value=\"" + showcontrols + "\" />\n");
    document.write("<param name=\"loop\" value=\"" + repeat + "\" />\n");
    document.write("<param name=\"scale\" value=\"ASPECT\" />\n");
    document.write("<param name=\"z-index\" value=\"1000\" />\n");
    
    document.write("<embed type=\"video/quicktime\" pluginspage=\"" + _quicktimePlayerPluginPage + "\" src=\"" + src + "\" name=\"" + id + "\" ");
    document.write("width=\"" + width + "\" ");
    document.write("height=\"" + height + "\" ");
    document.write("autoplay=\"" + autostart + "\" ");
    document.write("controller=\"" + showcontrols + "\" ");
    document.write("loop=\"" + repeat + "\" ");
    document.write("scale=\"ASPECT\" ");
    document.write("wmode=\"opaque\" ");
    document.write("z-index=\"1000\" ");
    document.write("></embed>\n ");
   
    document.write("</object>\n");
}
