var fDesc=new Array(); fDesc[0] = "TMS Plugin Framework makes building applications with plugins easy.

Main features:

-Allows breaking large applications into multiple dynamically loadable -packages.
Reduces file size for sending updates by sending only plugin updates.
-Allows distributing custom plugins for specific customer needs.
-Allows extending applications without recompilation of the main module.
-Allows adding new menus, forms, layouts, etc... through plugins in your application.
-Visual plugin designer
-Includes a plugin manager that allows a flexible and easy way to handle plugins to load.
-The TMS Plugin Framework has the same concept as the Delphi IDE that allows you to incorporate new functionalities to the environment based on 'Services'.
-The TMS Plugin Framework takes the complexity out of building package technology based plugins"; 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 = ''; } }