var fDesc=new Array();
fDesc[1] = "session on a computer, over a network. PuTTY implements the client end of that session: the end at which the session is displayed, rather than the end at which it runs.";
fDesc[2] = "newcomers, for the home or the office.";
fDesc[4] = "general-purpose cryptography library, for data integrity, authenticity, and privacy security features. Perl or Cygwin needed for Win32 compile.";
fDesc[5] = "access and control hardware directly from within a Win32 application without using the Windows DDK.";
fDesc[6] = "equation just typing it over a text field and pressing enter. Graphmatica is very easy to use and have a lot of interesting options. The only drawback is that you could use it just for 30 days, after that you have to pay for it.";
fDesc[7] = "perform scan on predefined port ranges.The tool is designed with a user-friendly interface and is easy to use.";
fDesc[8] = "programs by as much as 70%.(ASPack's compression ratio improves upon theindustry-standard zip file format by as much as10-20%.) ASPack makes Win...";
fDesc[9] = "automatic sequencing of commands.";
fDesc[11] = ", SHOUTcast/Icecast HTTP streaming and RTP streaming. It has a music browser, theme support and a download manager. The program has the usual controls found in every player, like Play, Pause, Stop or Go to the Next Track.";
fDesc[12] = "live to internet using the ftp protocol or the implemented visionGS http server. there is no need for a special webcam, you can also use for exam...";
fDesc[13] = "(Windows-NT) for all CDROM/CDR.";
fDesc[14] = "function calls and modify function's parameters before and after its execution. SpyStudio supports any type of parameter even structures of any type.";
fDesc[15] = "in either Windows 95 or Windows NT. Now includes the Winsock 2 API. New debugging technology supports ActiveX and OLE, and is compatible with more Win32 applications than previous versions. TracePlus displays the Winsock functions called by your Internet application to access the internet anddisplays detailed information including error messages if your application is having trouble communicating with the Internet.";
fDesc[16] = "advantage of native Windows functionality. If youre a PERLer, get it while its hot!";
fDesc[18] = "editing of tables, end-user reporting, security setting, SQL colour coding, dump functionality and much more.";
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 = '...';
}
}