function EmbedQT(filename, width, height)
{
        document.write('<object classid="clsid:02bf25d5-8c17-4b23-bc80-d3488abddc6b" \n');
		document.write('width="' + width + '" height="' + height + '" \n');
		document.write('codebase="http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0">\n');
		document.write('<param name="src" value="' + filename + '" />\n');
		document.write('<embed type="video/quicktime" width="' + width + '" height="' + height + '" src="' + filename + '">\n');
		document.write('</embed>\n');
		document.write('</object>\n');
}