MTSPlugin.prototype.sendJS=function(ajs)
{
    var pn=this._mtsPID();

    if(VET_Mac&&VET_IE)
    {
        // Sorry, doesn't work here.
    }
    else
    {
        if(VET_Win&&VET_IE)
            eval('document.all.'+pn).PluginCommand(ajs, 0, 0);
        else
        {
            if(this.LN==VET_Ln)
                eval('document.embeds.'+pn).DoCommand(ajs)
            else
            {
                if(VET_Gecko)
                    eval('document.embeds.'+pn).DoCommand(ajs)
                else
                    eval('document.'+this.LN+'.document.embeds.'+pn).DoCommand(ajs)
            }
        }
    }
}


