var fDesc=new Array(); fDesc[0] = "GExperts is a set of tools built to increase the productivity of Delphi and C Builder programmers by adding several features to the IDE. GExperts is developed as Open Source software and encourages user contributions to the project. Experts will often contain information not included in this help file including the latest changes, known bugs, and plans for the future."; 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 = ''; } }