
function EmbedWinMedia(WMVPathFile, Width, Height) {
	    var oeTags = '<object classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6"'
	    + ' id="VideoClip" name="VideoClip"'
	    + ' width="' + Width + '" height="' + Height + '"'
		+ ' type="application/x-oleobject">'
	    + ' <param name="URL" value="' + WMVPathFile + '" />'
		+ ' <param name="SendPlayStateChangeEvents" value="True" />'
		+ ' <param name="ShowStatusBar" value="1">'
		+ ' <param name="Loop" value="false" />'
		+ ' <param name="AutoStart" value="true" />'
		+ ' <param name="uiMode" value="full" />'
		+ ' <param name="PlayCount" value="1" />'
	    + ' <embed src="' + WMVPathFile + '"'
	    + ' width="' + Width + '" height="' + Height + '"'
	    + ' name="VideoClip" id="VideoClip"'
	    + ' autostart="1"'
	    + ' showstatusbar="1"'
	    + ' loop="0"'
	    + ' type="application/x-mplayer2"'
	    + ' pluginspage="http://microsoft.com/windows/mediaplayer/en/download/">'
	    + ' <\/embed>'
	    + ' <\/object>';

	    document.write(oeTags);
	    document.close();
  }

