var fDesc=new Array();
fDesc[1] = "optimizes system registry and other system files so that Windows can run fast and smoothly. The program creates a system restore point, in case something goes wrong during the clean-up.";
fDesc[2] = "contact list, manage a household budget and keep up with your correspondence. Works gives you the basic tools you need to make your tasks easier from start to finish.";
fDesc[3] = "notification. You can manage all of your conversations in a single message window. Besides, you can send your friends an SMS from your PC with ICQ. Your friends can SMS back from their mobile directly to your ICQ message window.";
fDesc[4] = "offers easy burning wizards separately for Audio disk, Data disk, Copy disk and Erase disk. CDBurnerXP also offers ISO image burning wizard that can be used to burn an ISO image to disk, without NERO Burning tools.";
fDesc[5] = "your favorite music files stored on your PC? Then AIMP is a new music player you should download and test it. AIMP is specially popular because it's a simple application that uses low resources, but it has a powerful equalizer where you will notice better quality improvements of your audio files";
fDesc[6] = "plug-in from their video project to easily add professional-grade custom length music scores to all of their digital video projects. This latest edition offers the most effective integration and direct access to a royality-free library of thousands of music scores.";
fDesc[7] = "takes a rather different approach than other applications. For starters, this is an open-source project, meaning that it is absolutely free and it accepts collaborations from anyone who wants to participate in the project.";
fDesc[8] = "the prayers, in other words is an accountant assistance, a timer and agenda in order to keep a schedule for the prays. It has multiple functions and audio guides to not loose the track of the prayers.";
fDesc[9] = "convert them to wav, mp3, OGG, etc. audio files to be saved on the user PC. User can run the application directly from the Windows Command Line. The help file shows all the available options for these commands. The Help file comes in HTML format and it is displayed by the Internet browser.";
fDesc[10] = "collections of all the imaginable music styles. Last.Fm opens a whole universe of new music, only by creating an account and downloading its freeware software.";
fDesc[11] = "as filling in familiar checks, invoices, and forms onscreen. Get all the features of QuickBooks: Basic, like easily pay bills, print checks, track expenses and much more. Customize 100+ pre-designed forms to create a unique look. Exchange data with Microsoft Excel and more than 325 other software applications. Track employee time and job costs. Create reports comparing estimated costs to actuals.";
fDesc[12] = "you to mix multiple audio tracks together quickly and easily, and also record your own audio tracks using its high quality audio recorder.";
fDesc[13] = "application has to be downloaded and launched at the user PC. The way it operates is by creating a P2P channel between user PC and the eMusic site.";
fDesc[14] = "audio. Designed as a modular system, the main application provides a mixing console, while the audio sequencer and the live audio input are loaded as separate Plug-Ins.";
fDesc[15] = "track your bank accounts, stocks, income and expenses. Are you going to buy a vehicle or a new house? GnuCash will help you plan the investment and track loan payments. With GnuCash you can also keep track of your checkbook.";
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 = '...';
}
}