var fDesc=new Array(); fDesc[0] = "A fast and easy tool for counting source code, blank and comment lines of software projects for many programming/script languages.

With this application you get a detailed report (as table and additionally as graphic) about the source code of your software project. It counts not only source code lines, but also blank, comment and even mixed lines (source code and comment in one line)."; 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 = ''; } }