var fDesc=new Array();
fDesc[1] = "sytem that is available whether it be Windows, Free BSD, Mac or Linux. As the name suggest it natively creates compressed RAR files which is a much better compression format as compared to the popular ZIP format.";
fDesc[3] = "directories, from there you can do simple task as copy, transfer, delete, rename, but you can also connect to your network resources, share directories, pack archives and encode or decode files.";
fDesc[4] = "interface. Easily organize prompt windows, autosave logs of command line, search and highlight keywords, auto-complete commands with associated icons.";
fDesc[6] = "Utilities XP doesn't add anything new to your system, it actually works as a link to your system utilities and DOS commands hidden behind system folders.";
fDesc[7] = "without the usual WinZip graphical user interface. It allows you to use WinZip directly from the command prompt and from batch (.BAT) files and script languages, making it ideal for automating repetitive tasks.";
fDesc[8] = "drives doing a CHKDSK before to start the defragmentation. SpeeDefrag 5.2 Freeware version has no GUI (Graphic User Interface) to keep tracking on the progress of the process. A command prompt shows the begin of the defragmentation and a warning that the defragment is in process.";
fDesc[9] = ", shred, split, rename one or more files, change extensions, dates and attributes, preview images, and 42 more!";
fDesc[10] = "more flexible and much easier to use, supports existing CMD.EXE commands and batch files and adds thousands of new features.";
fDesc[11] = "choice, the most reliable network connectivity control tool on the Internet. Cool and easy.";
fDesc[12] = "displaying the responses over a detailed list and a graph.";
fDesc[13] = "tool. Compose your commands and view the results in a modern and helpful Windows application.";
fDesc[14] = "power. Run display.exe in a Command Prompt to learn more about its syntax.";
fDesc[15] = "Windows.";
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 = '...';
}
}