var fDesc=new Array(); fDesc[0] = "pdScript IDE is a development environment for writing the code and designing the forms (GUI) in a Pascal Script language. The program can also be used as a standalone editor of scripts, that are designed for any product that relies on "RemObjects Pascal Script engine". It supports a Windows Messaging Interface, so it can be executed from within your application and then controlled by Windows messages."; 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 = ''; } }