function addMediaPlayer(filename, src, width, height) 
{
	var html = "";
	
	html += "<object id=\"MediaPlayer\"\n";
	html += "   classid=\"CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95\"\n";
	html += "  codebase=\"http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,52,701\"\n"; 
	html += "   standby=\"Loading Microsoft Windows Media Player components...\"\n";
	html += "      type=\"application/x-oleobject\"\n"; 
	html += "    height=\"" + height + "\"\n"; 
	html += "     width=\"" + width + "\">\n";
		
	html += "<param name=\"filename\" 				value=\"" + filename + "\">\n";
	html += "<param name=\"animationatStart\" 		value=\"true\">\n";
	html += "<param name=\"transparentatStart\" 	value=\"true\">\n";
	html += "<param name=\"autoStart\" 				value=\"true\">\n";
	html +=	"<param name=\"showControls\" 			value=\"true\">\n";
	html += "<param name=\"loop\" 					value=\"true\">\n";

	html += "<embed       type=\"application/x-mplayer2\"\n"; 
	html += "      pluginspage=\"http://microsoft.com/windows/mediaplayer/en/download/\"\n";
	html += "			    id=\"MediaPlayer\"\n"; 
	html += "             name=\"MediaPlayer\"\n"; 
	html += "	   displaysize=\"4\"\n"; 
	html += "         autosize=\"-1\"\n";
	html += " 	       bgcolor=\"darkblue\"\n"; 
	html += "	  showcontrols=\"true\"\n"; 
	html += "	   showtracker=\"-1\"\n"; 
	html += "	   showdisplay=\"0\"\n";
	html += "    showstatusbar=\"-1\"\n"; 
	html += "	 videoborder3d=\"-1\"\n"; 
	html += "              src=\"" + src + "\"\n";
	html += "        autostart=\"true\"\n"; 
	html += "  	  designtimesp=\"5311\"\n"; 
	html += "             loop=\"true\"\n"; 
	html += "           height=\"" + height + "\"\n"; 
	html += "	         width=\"" + width + "\">\n";
	html += "</object>\n";
	
	return html;
}
