var fDesc=new Array(); fDesc[0] = "LCDC is an application that displays information on your LCD or VFD screen. At present it is geared towards powering the Matrix Orbital products as these have some great features like GPO (General purpose outputs, that can be use to turn things on and off!) and Keypad connectivity. The number of things that LCDC can do is expandable by Plugins that add functionality to the application and hopefully new plugins will be added at various intervals to add even more functionality. Also the Delphi 5 source code for a blank plugin is available, so for the brave of heart you can add and write your own 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 = ''; } }