function writeQuicktime (src, width, height) {
	height += 16;
	document.write('<object width="'+width+'" height="'+height+'" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab">');
	document.write('<param name="src" value="'+src+'" />');
	document.write('<param name="controller" value="true" />');
	document.write('<param name="autoplay" value="true" />');
	document.write('<param name="type" value="video/quicktime" />');
	document.write('<embed src="'+src+'" width="'+width+'" height="'+height+'" pluginspage="http://www.apple.com/quicktime/download/" controller="true" autoplay="true" type="video/quicktime"></embed>');
	document.write('</object>');
}

