function WMP_EMBED(filename, width, height) {
	
	height = parseInt(height)+48;

	document.write('<object id="VIDEO" width="'+ width +'" height="' + height + '" classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">');
	document.write('<param name="URL" value="' + filename + '" />');
	document.write('<param name="AutoStart" value="True" />');
	document.write('<param name="PlayCount" value="1" />');
	document.write('<param name="uiMode" value="full" />');
	document.write('<embed width="'+ width + '" height="' + height+'" src="' + filename + '" controller=true autoplay=true playeveryframe=false pluginspage="plugin.html"></embed>');
	document.write('</object>');
	
}