var fDesc=new Array();
fDesc[1] = "system configuration, security, cleanup and maintenance now optimizes Windows Vista as well";
fDesc[2] = "music and video libraries, a manager of photographs, software for presentations of photos and videos plus an editor and covers. All these tools can be ruled out at the facility where the only thing that interests us is the writer Nero 9.";
fDesc[3] = "diverse information about the hardware and software installed on your system. As expected from a free version, this version is limited for personal use, which mean that can´t be used for commercial reports and doesn´t have any kind of tech support.";
fDesc[4] = "information, Process manager, Optimizer, 1 click cleaner, Repair center, Start up manager, System speed booster, Junk file cleaner, Registry Cleaner, Wallpaper changer, Privacy protector, File Splitter, Shutdown manager and many more utility tools that can customize your system for best performance.";
fDesc[5] = "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[6] = ", improve system security, and meet all of your expectations. It's compatible with Windows Vista SP1 entirely!";
fDesc[7] = "percentage, calculate the number of integrated files. Arrange all the output result according to the size or by name via its Sort feature, use CD/DVD cluster option to know the CD/DVD size.";
fDesc[8] = "your hard disk including important information as size, location and number of files for each existing folder and its subfolders, allocated and wasted space, last access date, file owner and permissions and other details.";
fDesc[9] = "up a Windows operating system, like the unnecessary file cleaner, registry cleaning and backup, Internet Explorer settings manager, process management, etc.";
fDesc[10] = "connection. At launch, the program presents a sleek, easy to navigate interface that is packed with useful features and utility choices that you can customize. In the Tweaks Section, Performance Tweaks 1 and 2 enable you to tweak CPU Priority Control settings";
fDesc[11] = "will make your PC run faster and will make your PC error free.";
fDesc[12] = "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[13] = "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.";
fDesc[14] = "Windows XP. This incredible program works with all resource files (.RES) and PE modules (.EXE, .DLL, etc.) but it has special knowledge of modules written in Delphi.";
fDesc[15] = "PCs, servers, and networks. This incredible program provides most of the information you need to know about your hardware, software and other devices.";
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 = '...';
}
}