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