function write_video(src,w,h)
{
	var t = '';
	t += '<OBJECT ID="MediaPlayer" width="' + w + '" height="' + h + '" classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95"';
	t += 'codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112"';
	t += 'standby="Loading Microsoft Windows Media Player components..."';
	t += 'type="application/x-oleobject">';
	t += '<PARAM NAME="FileName" VALUE="' + src + '">';
	t += '<PARAM NAME="ShowControls" VALUE="1">';
	t += '<PARAM NAME="ShowDisplay" VALUE="0">';
	t += '<PARAM NAME="ShowStatusBar" VALUE="1">';
	t += '<PARAM NAME="AllowChangeDisplaySize" VALUE="1">';
	t += '<PARAM NAME="AutoSize" VALUE="1">';
	t += '<param name="DisplaySize value=" 0"">';
	t += '<param name="ClickToPlay" value="true">';
	t += '<Embed type="application/x-mplayer2" ';
	t += 'pluginspage="http://www.microsoft.com/windows/windowsmedia/download/" ';
	t += 'filename="' + src + '" ';
	t += 'src="' + src + '" ';
	t += 'Name=MediaPlayer ';
	t += 'ShowControls=1 ';
	t += 'ShowDisplay=0 ';
	t += 'ShowStatusBar=0 ';
	t += 'AllowChangeDisplaySize=1 ';
	t += 'AutoSize=1 ';
	t += 'DisplaySize=0 ';
	t += 'ClickToPlay=1 ';
	t += 'width=' + w + ' ';
	t += 'height=' + (h + 40) + ' ';
	t += '</embed>';
	t += '</OBJECT>';
	document.write(t);
}

