function videoPlayer(oElem, iWidth, iHeight, sUrl) 
{
	var sMedia = "";
	var oPlay = document.getElementById(oElem);

	sMedia += "<object classid=\"CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95\" id=\"mediaplayer\" width=\"" + iWidth + "\" height=\"" + iHeight + "\" type=\"application/x-oleobject\">";
	sMedia += "	<param name=\"fileName\" value=\"" + sUrl + "\">";
	sMedia += "	<param name=\"autoStart\" value=\"true\">";
	sMedia += "	<param name=\"showStatusbar\" value=\"true\">";
	sMedia += "	<embed type=\"application/x-mplayer2\"";
	sMedia += "		pluginspage = \"http://www.microsoft.com/windows/mediaplayer/\"";
	sMedia += "		src=\"" + sUrl + "\"";
	sMedia += "		name=\"mediaplayer_\"";
	sMedia += "		width=\"" + iWidth + "\"";
	sMedia += "		height=\"" + iHeight + "\"";
    sMedia += "		nojava=\"1\"";
    sMedia += "		showstatusbar=\"1\"";
	sMedia += "		autostart=\"true\">";
	sMedia += "	</embed>";
	sMedia += "</object>";

	oPlay.innerHTML = sMedia;
}