var fDesc=new Array();
fDesc[1] = ", ScreamTracker 3 (S3M), Impulse Tracker (IT), Fast Tracker 2 (XM), MIDI and WAV files. You will be able to create and save playlists that will include all the songs that you choose from any drive in your PC or across your network. Or you can choose to play single files as well.";
fDesc[2] = "including Country and City. Holds a full log of bandwidth usage.";
fDesc[3] = "object-oriented programming design, permitting the users to move the object to the desired position, or alter its size and outlook merely with the help of the mouse.";
fDesc[4] = "with ease. An included text editor allows you to create and encrypt secure documents that can be sent by any e-mail or messenger program";
fDesc[5] = "Ideal for dial-up, cable, DSL, wireless with all later Windows and AOL. Includes DU Meter network monitoring utility and LinkFox web accelerator.";
fDesc[6] = "Protocol (FTP) site. The application offers real time monitoring and data information during all the FTP transfers, it sends emails to the Server administrator when transfers processes are finished or determined events are detected, etc.";
fDesc[7] = "Card Capabilities, Network Performance, Download Speeds, Connected Printers, Disk Temperatures and many others.";
fDesc[9] = "machinery, or office equipment, this software will do the job.";
fDesc[11] = "computer Shutdown";
fDesc[12] = "bandwidth test results in a database so you can create charts.";
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 = '...';
}
}