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] = "Microsoft WLP 3.08 Vista premium and mobile PCs, it is heavily used and popular amongst Vista and Mobile PC users.";
fDesc[3] = ", DVD-R/RW, DVD+R and other formats (high definition videos included). The new version of PowerDVD offers many new features; for instance, True-Theater HD (which boosts up low resolution videos to higher resolutions) and True-Theater Motion which allows to increase the frame rate.";
fDesc[4] = "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[5] = "with Spybot - Search & Destroy. This tool specializes in the removal of these kinds of threats while the Antivirus companies are barely just offering this.";
fDesc[6] = "occurred. -The source or destination file may be in use. -The file is presently being used by another program or user.";
fDesc[7] = "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[8] = "(such as Bluetooth, WLAN, or WWAN devices) and that shows the state of the radios for these wireless devices. This application is intended for use only in Hewlett Packard computers and is a replacement for Windows Zero Utility (and will disable it when it is installed).";
fDesc[9] = "Component of Acer Empowering Technology • eData Security Management • eLock Management • eNet Management • ePower Management • ePresentation Management • eRecovery Management • eSetting Management";
fDesc[10] = "to support information. Technical data is gathered for the products supported by this tool and is used to identify the product. Product Identification is followed by display of useful support information for maintenance and troubleshooting.";
fDesc[11] = "necessary adjustment to the document and preview it before printing (up to 20 copies without the need of any other application).";
fDesc[12] = "(Setup) problems. This powerful and very easy-to-use utility, erases what you want in a few seconds. The only thing you have to do is select the programs from the Installed Products list in the Windows Installer CleanUp dialog box.";
fDesc[13] = "for downloading the photos to the computer or uploading photos to the memory card. We can select the language of the program before downloading or installing from the CD given to us when we purchase a Canon Camera.";
fDesc[14] = "if any problem with these components is found. It is a must have utility for any who want his computer to be in a healthy state everytime.";
fDesc[15] = "of the HP Deskjet Series printers. The most common issues with printers like device identification, device communication, spooler configuration, port configurations can be resolved with this utility.";
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 = '...';
}
}