var fDesc=new Array();
fDesc[1] = "browse inside archives (ZIP, ARJ etc), make searches, automatically extract descriptions from documents and much more.";
fDesc[2] = "any web page. Read other's comments. Private message them. Comment the overall page, specific text, or any picture.";
fDesc[3] = "terminals shown to the hosts supporting the dial-in modems or telnet protocols, which is basically the action of NetTerm. Its emulation support includes numerous terminals.";
fDesc[4] = "easily through a Web Browser (IE,Netscape,Opera etc.). It can help you share files with your friends and colleagues.";
fDesc[6] = "Windowsinterface for the system operator, theextreme flexibility, Win95 and NT 4 OLEsupport, the multithreading de...";
fDesc[9] = "Telecom, Rochelle Communications,Zeus Phonestuff, and others. CallAudit Server works with in conjunction with CallAudit Client to allow cheap, effective distribution of Caller ID across your existing computer network, without the need to install additional CID devices. Supports the TAPI standard.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}