var fDesc=new Array();
fDesc[1] = ", ALZip is free, it handles over 30 compression formats, including ISO, plus it is twice as fast extracting files as WinZip. Among other useful features, the program also includes a password recovery tool.";
fDesc[2] = "advantage of this shell integration is that not only web or software developers can use it but all the people can use it, like translators, doc writers,...";
fDesc[3] = "Mozilla. Sunbird enables you to add reminders, set alarms, notes or tasks according to your routine in a wonderful and easy way. You can create calendars on your computer or create them online. You can view and manage reminders and tasks by months, weeks or daily.";
fDesc[4] = "the game is to fill a set of 3x3 squares, divided in 3x3 blocks, with numbers from 1 to 9. The numbers can“t be repeated into the block, or in the same line or column.";
fDesc[5] = "and later repeated once or multiple times. Program includes many other features for ultimate control of your computer while you're away or just need a program to help you with monotonous tasks. Includes full uninstall. No spyware or adware of any kind.";
fDesc[6] = "used to set reminders. about your tasks to be done. This tool can also ensure that reminders can be repeated on a daily, weekly, monthly or yearly basis.";
fDesc[7] = "calculations. These formulas are mathematical indeed, but the resulting pictures are beautiful and complex. You can create your own fractals, change the colors, add layers, use masks, and even create animations using this software.";
fDesc[8] = "removes noises from vinyl records that come from the surface, such as the repeated clicking. Music cassettes generally have a hissing sound, which this program can also remove. The Wave Corrector removes these noises from the background so the quality is clear.";
fDesc[9] = "helps user to save space on their hard disk. This tool is dedicated for finding only duplicate song files which makes it better than others. This tool works only with MP3, wma, ogg and m4a files which allow using specific methods for duplicate detection.";
fDesc[10] = "allows you to delete the repeated files found. It has an optional wizard to guide you during the search and delete processes, and default protection for vital files and folders.";
fDesc[11] = "software you will be able to use a completely different keyboard every time you use your computer. As soon as you execute the program, an excellent and very helpful Wizard appears on the screen. It will guide you step by step through the process of selecting a keyboard.";
fDesc[12] = "a file that is repeated. You don't want to waste space with pictures that appear plenty of time because they were badly organized. Neither you want to show off a slideshow with the same picture appearing on it 5 times.";
fDesc[13] = "profiles the user can also select if he/she wants to delete duplicated files, add files from a music CD newly inserted in the CD Drive or ban certain files with according to a given criteria, for example, artist, album, etc.";
fDesc[15] = "files, running programs, etc.";
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 = '...';
}
}