function writeQuickTime(path, width, height) {
	strContent = '<OBJECT codeBase="http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0" height="'+height+'"'+
						'width="'+width+'" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" VIEWASTEXT>'+
						'<PARAM NAME="controller" VALUE="TRUE">'+
						'<PARAM NAME="type" VALUE="video/quicktime">'+
						'<PARAM NAME="autoplay" VALUE="true">'+
						'<PARAM NAME="src" VALUE="'+path+'">'+
						'<PARAM NAME="pluginspage" VALUE="http://www.apple.com/quicktime/download/indext.html">'+
						'<EMBED WIDTH="'+width+'" HEIGHT="'+height+'" CONTROLLER="TRUE" SRC="'+path+'" type="video/quicktime"'+
						'BGCOLOR="#000000" BORDER="0" PLUGINSPAGE="http://www.apple.com/quicktime/download/index.html"></EMBED></OBJECT>';
	document.write(strContent);
}
