function patentReformNowWmp6Version(width,height,fileName)
{
	document.write('<object width="' + width + '" height="' + height + '" classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" ');
	document.write('standby=\"...standby...\" ');
	document.write('type=\"application/x-oleobject\" id=\"mediaplayer1\">\n');
  	document.write(' <param name=\"fileName\" value="' + fileName + '" />\n');
	document.write(' <param name=\"animationatStart\" value=\"true\" />\n');
	document.write(' <param name=\"transparentatStart\" value=\"true\" />\n');
	document.write(' <param name=\"autoStart\" value=\"true\" />\n');
	document.write(' <param name=\"showControls\" value=\"true\" />\n');
	document.write(' <param name=\"showStatusBar\" value=\"true\" />\n');
	document.write(' <param name=\"Volume\" value=\"0\" />\n');
	document.write(' </object>\n');
}
function patentReformNowWmp7Version(width,height,fileName)
{
	document.write('<object width=\"' + width + '\" height=\"' + height + '\" classid=\"CLSID:6BF52A52-394A-11D3-B153-00C04F79FAA6\" ');
	document.write('standby=\"...standby...\" ');
	document.write('type=\"application/x-oleobject\" id=\"mediaplayer1\">\n');
  	document.write(' <param name=\"URL\" value="' + fileName + '" />\n');
	document.write(' <param name=\"animationatStart\" value=\"true\" />\n');
	document.write(' <param name=\"transparentatStart\" value=\"true\" />\n');
	document.write(' <param name=\"autoStart\" value=\"true\" />\n');
	document.write(' <param name=\"showControls\" value=\"true\" />\n');
	document.write(' <param name=\"showStatusBar\" value=\"true\" />\n');
	document.write(' <param name=\"Volume\" value=\"100\" />\n');
	document.write(' <embed type=\"application/x-mplayer2\" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" ');
	document.write(' width="' + width + '" height="' + height + '" SRC="' + fileName + '" name="mediaplayer1"');
	document.write(' autostart="True" showcontrols="True" showstatusbar="true">');
	document.write(' </object>\n');
}
function patentReformNowQuicktimeVersion(width,height,fileName)
{
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" ');
	document.write(' codebase="https://www.apple.com/qtactivex/qtplugin.cab" width="' + width + '" height="' + height + '">\n');
	document.write(' <param name="cache" value="true">\n');
	document.write(' <param name="scale" value="aspect">\n');
	document.write(' <param name="src" value="' + fileName + '">');
	document.write(' <param name="autoplay" value="true">\n');
	document.write(' <param name="controller" value="true">\n');
	document.write(' <embed width="' + width + '" height="' + height + '"');
	document.write(' pluginspage="https://www.apple.com/quicktime/download/" src="' + fileName + '"');
	document.write(' type="video/quicktime" controller="true" autoplay="true" cache="true" scale="aspect">\n');
	document.write('</object>\n');
} 

function patentReformNowFlashVersion(width,height,fileName)
{
	document.write('<object width="' + width + '" height="' + height + '">\n');
	document.write(' <param name="cache" value="true">\n');
	document.write(' <param name="scale" value="aspect">\n');
	document.write(' <param name="movie" value="' + fileName + '">');
	document.write(' <param name="autoplay" value="true">\n');
	document.write(' <param name="controller" value="true">\n');
	document.write(' <embed width="' + width + '" height="' + height + '"');
	document.write(' src="' + fileName + '"');
	document.write(' controller="true" autoplay="true" >\n');
	document.write('</object>\n');
} 

function loadCMPlayerSlim(width,height,textid,timestamp, duration)
{
	document.write('<object width="' + width + '" height="' + height + '">\n');
	document.write(' <param name="cache" value="true">\n');
	document.write(' <param name="scale" value="aspect">\n');
	document.write(' <param name="movie" value="http://ctv4.criticalmention.com/playerpage/player?text_id=' + textid +'&timestamp=' + timestamp +'&after=' + duration + '&autoPlay=1' +  '&slim=rb' + '"> ');
	document.write(' <param name="autoplay" value="true">\n');
	document.write(' <param name="controller" value="true">\n');
	document.write(' <embed width="' + width + '" height="' + height + '"');
	document.write(' src="http://ctv4.criticalmention.com/playerpage/player?text_id=' + textid +'&timestamp=' + timestamp +'&after=' + duration + '&autoPlay=1' + '&slim=rb' + '"');
	document.write('  >\n');
	document.write('</object>\n');
} 

