var fDesc=new Array(); fDesc[0] = "RemObjects Script for .NET is an embeddable engine for .NET applications that allows developers to let their users introduce written scripts that influence the behavior of the application.

The RemObjects Script engine is built in a language-agnostic way, so that different concrete language implementations can be created on top. It currently supports most of ECMAScript 262 version 1.5 (also known as JavaScript).

RemObjects Script is no longer dependent on the Microsoft DLR runtime, has been significanty; improved and resesigned for optimum performance and succeeds on 100% of the tests in the EC5 test suite. It can be run on any version of .NET 2.0 or later and Mono.

Currently supported features:

- Objects
- Prototypes
- Functions
- Arrays
- Booleans
- Regular Expressions
- Numbers
- Build-in classes: Object, String, Function, Array, Number, RegExp, Date, Boolean
- Interopability with non-ECMAScript types
- Interopability with other DLR-based language types"; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }