function mediaPlayer(width, height, url) {
	document.write("<object width='" + width + "' height='" + height + "'");
	document.write("classid='CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6'");
	document.write("type='application/x-oleobject'>");
	document.write("<param name='url' value='" + url + "'>");
	document.write("<param name='uiMode' value='mini'>");
	document.write("<embed type='application/x-mplayer2'");
	document.write("pluginspage='http://www.microsoft.com/Windows/MediaPlayer/'");
	document.write("src='" + url + "' align='middle'");
	document.write("width='" + width + "' height='" + height + "'");
	document.write("showstatusbar=true>");
	document.write("</embed>");
	document.write("</object>");
}
