var fDesc=new Array();
fDesc[1] = "overview that helps you keep track of your expenses. Put savings targets and then perform a monthly analysis of your finances to see how much you're really saving.";
fDesc[2] = "The utility checks all the system to verify if there exists any kind of errors that affects the computer functionality and automatically corrects them. the utility also searches for spyware and adware. If you want, the program can monitor your computer in the background in real time.";
fDesc[3] = "decided to change its name to FFSJ: The Fastest File Splitter and Joiner. Some name, huh? Anyhow, what this application does is cut your files into smaller parts so that you can fit them in certain media or e-mail it.";
fDesc[4] = "issues on any Windows computer. The reason for that is that applications that were once installed and now are gone left entries that confuse the system.";
fDesc[5] = "than 12 years now. Much has changed and much is going to change. The major changes have been due to the new technologies that the Internet has brought upon us and how we have more freedom to do things online.";
fDesc[6] = "are not deleted permanently. You can erase your recycle bin several times. Still, Windows does not physically erase the data your files had on them.";
fDesc[7] = "itself and allow you to upload all your e-mails from Desktop-based accounts into Gmail. Of course, that gives you freedom to use the application in many ways. Personally, I used this when I had to migrate all my ISP's e-mail from my Outlook account to Gmail.";
fDesc[8] = "is a p2p portal. You can use Instant CD & DVD Burner to burn your music files to CD or DVDs. You can also use it to burn or compile ISO files from your music files or other data files.";
fDesc[9] = "vinyl LPs, building websites, creating presentations, or making music, you probably care about your audio. Now, there's an easy-to use tool that will make your work sound better than ever. BIAS SoundSoap scrubs audio squeaky clean — dramatically reducing tape hiss, clicks and crackles, buzzing and hum, rumble, and most other types of unwanted noise. Archiving your record collection to CD? Let SoundSoap buff out those scratches. Burning CDs from your old cassette collection? Don't forget the SoundSoap. A perfect narration, except for that annoying air conditioner? SoundSoap it! Best of all — while SoundSoap uses incredibly advanced technology to do its magic — you don't need to be an audio expert. Just click the one-step \"learn noise\" button, and watch SoundSoap automatically clean your audio! Or fine-tune SoundSoap's intuitive controls for even more professional results — in...";
fDesc[10] = "from all kind of threats. VirusKeeper concentrates on the vulnerable parts of your PC that might get affected easily. It protects the windows files from any programs trying to modify them.";
fDesc[11] = "doesn't use many of your system resources. For Windows users it is often a nightmare to run iTunes because of how long it takes to run when it is not already in the RAM memory.";
fDesc[12] = "files, disk, networking, security and process tasks. Sysinternals Toolbox package is the same package of the Sysinternals utilities plus a setup routine for you to conveniently install the Sysinternals utilities to your system.";
fDesc[13] = "you avoid overstrain by locking your computer and forcing you to take a 5-minute break every 30 minutes.";
fDesc[14] = "option which allows you to customize the screen layout as well as the article layout. There are about 13 assorted four-pane and 5 different three-pane views for you to customize the screen layout. For the article layout, you can mix and match 32 message attributes.";
fDesc[15] = "maintain it in a proper condition. Your task list will include a lot of functions such as building new homes and repairing old buildings, golden veins, building farms, recruiting settlers, taking care of settlers and satisfying their need for accommodation, food, health and job.";
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 = '...';
}
}