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] = "system configuration, security, cleanup and maintenance now optimizes Windows Vista as well";
fDesc[3] = "in-built disk defragment tools which actually work but Smart Defrag works even more faster and uses advanced technology to speed up your disk drive and processing.";
fDesc[4] = "management of home accounting. It allows working offline and online, in the latter mode the program updates balances and movements from your bank accounts. It runs only on Windows Vista and Windows XP Service Pack 2.";
fDesc[5] = "errors that show up. The software can optimize the computer by first scanning it to find the problems and then fixing the invalid registry entries. The Advanced Registry Optimizer is also easy to use and has a user friendly interface.";
fDesc[6] = "popular compression formats. It’s powerful, easy to use, versatile and even has a nice interface. You can compress and decompress most archives using the same program.";
fDesc[7] = "incredible application completely scans disks and saves as much information as possible. What is more, the program uses a lot of different algorithms, which considerably increases the amount and quality of the recovered data.";
fDesc[8] = ", or filesystem. You can do things that other programs/methods couldn't. If you cannot boot your computer to Windows, you can still create a bootable regenerating diskette or a bootable regenerating CD.";
fDesc[9] = "it be cool if you could have all those necessary tools grouped in just one simple suite? Movavi VideoSuite is exactly that, a complete video suite where you will find six essential tools to work with videos on your PC.";
fDesc[10] = "as registry problems, slow performance caused by drivers, hard drive fragmentation, memory optimization and others Windows' tweaks.";
fDesc[11] = "incredible program can also be used to recover information from Microsoft Exchange ost files and/or convert them into Microsoft Outlook pst files.";
fDesc[12] = "tools for Word (.doc), Excel (.xls), PowerPoint (.ppt), Publisher (.pub), OneNote (.one) etc.";
fDesc[13] = "Mobile 6 devices. Pocket Mechanic (WM6) is the perfect companion for any Windows Mobile 6 device. This program is a suite of tools that will be very useful to keep your WM6 device without errors.";
fDesc[14] = "detects if an error occurs by a virus in the registry and enables the blocked content. You can repair the registry, check and kill running processes, open the task manager, registry editor, system configuration utility, make a registry backup, and the system file checker.";
fDesc[15] = "databases, MS Excel worksheets, MS Word documents, MS Outlook data files, and MS Outlook Express dbx and mbx files.";
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 = '...';
}
}