var fDesc=new Array();
fDesc[0] = "Line Counter is a command-line tool for software developers.
This program can report the total number of lines of code and comment lines in C, C , C#, Java, JavaScript and PHP source files.
The output may be redirected to a text file.
Line Counter is a small VB.NET project which helps you to count how many lines (and chars) you coded in a project or just count how many lines (comments, blank lines, code) in a file.";
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 = '';
}
}