WMVObject = function(filepath){
   this.path = filepath;
   this.params = new Array();
   this.addParams = function(name, mvalue){
     this.params[name] = value;
   }
   this.write = function(idtowrite){
     var obj = document.getElementById(idtowrite);
     if(obj){
        var width = 600;
        var height=400;	
        var html = '<OBJECT id="VIDEO" CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6" type="application/x-oleobject" '
                 + 'width="'+width +'" height="'+height+'">'
                 + '<PARAM NAME="URL" VALUE="'+this.path+'">'
                 + '<PARAM NAME="enabled" VALUE="True">'
                 + '<PARAM NAME="AutoStart" VALUE="False">'
                 + '<PARAM name="PlayCount" value="3">'
                 + '<PARAM name="Volume" value="50">'
                 + '<PARAM NAME="balance" VALUE="0">'
                 + '<PARAM NAME="Rate" VALUE="1.0">'
                 + '<PARAM NAME="Mute" VALUE="False">'
                 + '<PARAM NAME="fullScreen" VALUE="False">'
                 + '<PARAM name="uiMode" value="full">'
                 + '<embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" '
                 + 'name="mediaplayer1" ShowStatusBar="true" EnableContextMenu="false" autostart="false" '
                 + 'width="'+width +'" height="'+height+'" loop="false" src="'+this.path+'" />'
                 + '</OBJECT>';
        obj.innerHTML= html;
     }
   }
}