var fDesc=new Array();
fDesc[1] = "system configuration, security, cleanup and maintenance now optimizes Windows Vista as well";
fDesc[2] = "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[3] = "PC from numerous threats. The application is free, easy to use and, in a few minutes, will make your computer run much better. It scans your system searching for potential issues with your shortcuts, spyware, registry, and start up programs, and then enables you to clean them up.";
fDesc[4] = "to provide drivers, however it includes a set of tools that could help you troubleshooting and restore your system, version 4.5 is the lastest released and its the one you will find in all Dell computers since 2001";
fDesc[5] = "Digital Camera. The latest version of this application runs smoothly under Windows Vista, although it can also support Windows XP and 2000. It has been designed for merging up to 26 photos in a single one, either vertical or horizontal.";
fDesc[6] = "MP3 and MP4 devices. It includes AMV Video Convert Tool, AMV Player, Media Manager, MP3 Player Disk Tool and MP3 Player Upgrade Tool.";
fDesc[7] = "Eos Utility CD package after purchasing a Canon Digital Camera. This piece of software has been designed to allow us to create units with both image and audio and save them as a single item. We can access this program via Start, Canon Utilities, Camera Window, MyCamera.";
fDesc[8] = "after purchasing a Canon Digital Camera. This software have been designed for communicating the camera with the computer in order to save and display the downloaded images at once. After saving the images we can print them. It runs under Windows XP and Vista OPs.";
fDesc[9] = "camera, supporting added for Vista ServicePack 1 (SP1). It can manage and edit JPEG,RAW and TIFF image file formats.";
fDesc[10] = "provide basic system functionality under Windows XP operating system. WARNING!: Because the computer is optimized for use with Windows Vista® operating system, some functionality will be lost under Windows XP operating system.";
fDesc[11] = "This program can not only tune up your system but also it cares for it regularly to save your operating system from internal problems and system crashes. It offers 4 wizards that contain different tools for different purposes.";
fDesc[12] = "several IT and networks specialists by more than 5 years. I remember that back in the day, this application was the only application of its kind. What this application does is let you manage your workstations from a single application.";
fDesc[13] = "Microsoft Excel that will help you to reduce time-consuming work. In this way, ASAP Utilities is a must for those who usually work with this popular spreadsheet app.";
fDesc[14] = "up a Windows operating system, like the unnecessary file cleaner, registry cleaning and backup, Internet Explorer settings manager, process management, etc.";
fDesc[15] = "Utilities XP doesn't add anything new to your system, it actually works as a link to your system utilities and DOS commands hidden behind system folders.";
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 = '...';
}
}