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[2] = "like customs buttons with gadget support, new tab page to access a new page, quick search box to navigate your web search faster, synchronized toolbar setting to access your information from any computer, and improved auto fill that allows you to have several profiles information.";
fDesc[3] = "viruses, worms, Trojans and others. Keep in mind that there is not a 100% viruses program protection, you have to make your own precautions, like making Backups from your personal information. For security reasons save your information.";
fDesc[5] = "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[8] = "computer for malicious programs such as viruses, Trojans, backdoor programs, worms, malware etc. Furthermore it monitors every action executed by the user or the operating system and takes prompt action when a malicious program is detected.";
fDesc[9] = "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[10] = "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[11] = "messages in your Gmail Account. With an icon in the system tray lets you know if you have unread messages, and shows you their subjects, senders and snippets, all without having to open the web browser.";
fDesc[12] = "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[13] = ", shred, split, rename one or more files, change extensions, dates and attributes, preview images, and 42 more!";
fDesc[14] = "choice, the most reliable network connectivity control tool on the Internet. Cool and easy.";
fDesc[15] = "tool. Compose your commands and view the results in a modern and helpful Windows application.";
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 = '...';
}
}