//IE-friendly ActiveX and plugin rendering
function renderMedia(source, width, height, autoplay){	
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="' + width + '" height="' + height + '" codebase="http://www.apple.com/qtactivex/qtplugin.cab" ID="Qtactivexplugin1" viewastext="viewastext">');
	document.write('	<param name="src" value="'+source+'">');
	document.write('	<param name="cache" value="false">');
	document.write('	<param name="autoplay" value="'+autoplay+'">');
	document.write('	<param name="controller" value="true">');
	document.write('	<param name="scale" value="tofit">');
	document.write('	<embed src="'+source+'" cache="false" target="myself" pluginspage="http://www.apple.com/quicktime/download/" controller="true" autoplay="'+autoplay+'" width="' + width + '" height="' + height + '" type="video/quicktime" scale="tofit" />');
	document.write('</object>');
}
