function InsertQuickTimeMovie(sSrcPoster, sSrcMain, sWidth, sHeight)
{
	if (sSrcPoster == sSrcMain)
	{
		document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="' + sWidth + '" height="' + sHeight + '" align="middle" codebase="http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0">\n');
		document.write('<param name="src" value="' + sSrcMain + '" />\n');
		document.write('<param name="autoplay" value="false" />\n');
		document.write('<param name="resizable" value="false" />\n');
		document.write('<param name="controller" value="true" />\n');
		document.write('<embed width="' + sWidth + '" height="' + sHeight + '" align="middle" pluginspage="http://www.apple.com/quicktime/download/"\n');
		document.write('src="' + sSrcMain + '"\n');
		document.write('autoplay="false"\n');
		document.write('controller="true">\n');
		document.write('</embed>\n');
		document.write('</object>\n');

	}
	else
	{
		document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="' + sWidth + '" height="' + sHeight + '" align="middle" codebase="http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0">\n');
		document.write('<param name="src" value="' + sSrcPoster + '" />\n');
		document.write('<param name="href" value="' + sSrcMain + '" />\n');
		document.write('<param name="target" value="myself" />\n');
		document.write('<param name="autoplay" value="false" />\n');
		document.write('<param name="resizable" value="false" />\n');
		document.write('<param name="controller" value="false" />\n');
		document.write('<embed width="' + sWidth + '" height="' + sHeight + '" align="middle" pluginspage="http://www.apple.com/quicktime/download/"\n');
		document.write('src="' + sSrcPoster + '"\n');
		document.write('href="' + sSrcMain + '"\n');
		document.write('target="myself"\n');
		document.write('autoplay="false"\n');
		document.write('controller="false">\n');
		document.write('</embed>\n');
		document.write('</object>\n');
	}
}