function InsertMovie(filename,width,height,autoplay) {
	if( autoplay )
	{
		autoplay_value = 'true';
	}
	else
	{
		autoplay_value = 'false';
	}
	document.write('<object width="' + width + '" height="' + height + '"');
	document.write('classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"');
	document.write('codebase="http://www.apple.com/qtactivex/qtplugin.cab">');
	document.write('<param name="src" value="http://homepage.mac.com/brandtdary/am/' + filename + '">');
	document.write('<param name="autoplay" value="' + autoplay_value + '">');
	document.write('<param name="controller" value="false">');
	document.write('<embed src="http://homepage.mac.com/brandtdary/am/' + filename + '" width="' + width + '" height="' + height + '"');
	document.write('autoplay="' + autoplay_value + '" controller="true"');
	document.write('pluginspage="http://www.apple.com/quicktime/download/">');
	document.write('</embed>');
	document.write('</object>');
}
