    if (playerVersion == "7") {
	document.writeln('<OBJECT ID="MediaPlayer1" classid="CLSID:6bf52a52-394a-11d3-b153-00c04f79faa6" ' +
	    'type="application/x-oleobject" ' +
	    'width="' + videoWidth + '" height="' + (videoHeight + 65) + '">');
//	    'width="' + videoWidth + '" height="' + (videoHeight + 72) + '">');
	document.writeln('<PARAM name="AutoSize" value="0">');
	document.writeln('<PARAM name="AutoStart" value="1">');
	document.writeln('<PARAM name="url" value="' + videoURL + '">');
    } else {
	document.writeln('<OBJECT ID="MediaPlayer1" classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" ' +
	    'CODEBASE="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" ' +
	    'type="application/x-oleobject" ' +
	    'width="' + videoWidth + '" height="' + (videoHeight + 72) + '">');
	document.writeln('<PARAM name="ShowStatusBar" value="1">');
	document.writeln('<PARAM name="AutoSize" value="0">');
	document.writeln('<PARAM name="ShowControls" value="1">');
	document.writeln('<PARAM name="ShowDisplay" value="0">');
	document.writeln('<PARAM name="ShowAudioControls" value="0">');
	document.writeln('<PARAM name="src" value="' + videoURL + '">');
    }
    document.writeln('<EMBED name="MediaPlayer1" type="application/x-mplayer2" ' +
	'pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" ' +
	'width="' + videoWidth + '" height="' + (videoHeight + 72) + '" ' +
	'showstatusbar="1" autosize="0" showcontrols="1" showdisplay="0" showaudiocontrols="1" ' +
	'hspace="0" vspace="0" src="' + videoURL + '"></EMBED>');
    document.writeln('</OBJECT>');

