function activateVideo(videoFile, height, width) {
	document.write('<object id="id6" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" width="' + width + '" height="' + height + '" >');
	document.write('<param name="src" value="QTPlaceholder.mov" />');
	document.write('<param name="qtsrc" value="' + videoFile + '" />');
	document.write('<param name="controller" value="true" />');
	document.write('<param name="autoplay" value="true" />');
	document.write('<param name="scale" value="tofit" />');
	document.write('<param name="volume" value="100" />');
	document.write('<param name="loop" value="false" />');
	document.write('</object>');
}