function writeMediaPlayer(id, width, height, src, showcontrols, autostart){
	var d=document;
	d.write("<object id='"+id+"' width='"+width+"' height='"+height+"' classid='CLSID:22D6f312-B0F6-11D0-94AB-0080C74C7E95' standby='Loading Windows Media Player components...' type='application/x-oleobject' codebase='http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112'>\n");
	d.write("<param name='filename' value='"+src+"'>\n");
	d.write("<param name='Showcontrols' value='"+showcontrols+"'>\n");
	d.write("<param name='autoStart' value='"+autostart+"'>\n");
	d.write("<embed type='application/x-mplayer2' src='"+src+"' name='"+id+"' width='"+width+"' height='"+height+"'></embed>\n");
	d.write("</object>");
}

