var fDesc=new Array(); fDesc[0] = "The Rubberduck project aims to take the VBE into the 21st century, by giving VBA developers a rich set of features commonly found in modern IDEs such as Visual Studio. Locate and fix code issues, rename identifiers, extract methods from a selection, write and run unit tests, find all references, organize code modules into folders, commit, push, pull, branch to a local or remote git repository, and more!"; 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 = ''; } }