function putWindowsMedia(
	url,
	width,
	height
) {
	str = "";

	str += '<object id="MediaPlayer" classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715" standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject" width="'+width+'" height="'+height+'">';
	str += '<param name="FileName" value="'+url+'">';
	str += '<param name="AnimationatStart" value="true">';
	str += '<param name="TransparentatStart" value="true">';
	str += '<param name="AutoStart" value="true">';
	str += '<param name="ShowControls" value="1">';
	str += '<param name="ShowPositionControls" value="0">';
	str += '<embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/isapi/redir.dll?prd=windows&sbp=mediaplayer&ar=Media&sba=Plugin&" src="'+url+'" showcontrols="1" showpositioncontrols="0" width="'+width+'" height="'+height+'"></embed>';
	str += '</object>';

	document.open();
	document.write(str);
	document.close();
}
