var fDesc=new Array();
fDesc[0] = "GnuWin32: util-linux-ng is a free utility pack developed by GnuWin32
Util-Linux contains miscellaneous utilities:
- col: filter reverse line feeds from input
- colcrt: filter nroff output for CRT previewing
- colrm: remove columns from a file
- ddate: converts Gregorian dates to Discordian dates
- getopt: parse command options (enhanced)
- hexdump: ascii, decimal, hexadecimal, octal dump
- line: read one line
- rename: rename files
- rev: reverse lines of a file or files
- tailf: follow the growth of a log file
- whereis: locate the binary, source, and manual page files for a command";
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 = '';
}
}