var fDesc=new Array();
fDesc[1] = "viruses, worms, Trojans and others. Keep in mind that there is not a 100% viruses program protection, you have to make your own precautions, like making Backups from your personal information. For security reasons save your information.";
fDesc[2] = "The System Information contains seven TABS for the Video, Audio, Network, Processor, Memory, Motherboard and BIOS information and Summary of all the hardware on the computer. The Boot Options allows the change of Boot order.";
fDesc[3] = "Diagnostics module - Benchmarks - Tweaking features - Web links - Favorite pages - Built-in hardware database - Full Windows XP compatibility - Full Windows Server 2003 compatibility - Fully localized user interface.";
fDesc[4] = ", XPx64,Vista(32-bit) and Vista x64 based system. With NVIDIA nTune installed we can monitor, access and adjust our system. New features in this versión: it can control the fan of another computer and it supports new nForce chipset.";
fDesc[5] = "working state if it has been affeted by malware or if your 14 year old sister wanted to download the lastest Avril Lavigne screensaver from a unknown website. It can also protect public computers from corruption blocking changes to crucial system files.";
fDesc[6] = ", performance degradations and possible hard disk failures.";
fDesc[7] = ", modules, Windows startup items, IE add-ons, system add-ons, services, drivers, opened files and installed programs in your operating system. Multilingual support and a very compact size make it a must-have system utility.";
fDesc[8] = "to interact effortlessly with their Students either on an individual, group or full classroom basis. Includes internet monitoring.";
fDesc[9] = "we are aware of it. In addition, HDDlife has a proper treatment for every diagnosis and can solve almost any problem. That way, not only monitors and inform us about our hard disks’ health but also take care of it and cure the disks whenever it’s necessary.";
fDesc[10] = "uses, such as office work, gaming, media editing or maximum resources (memory etc), and then switch from one setup to another.";
fDesc[11] = "applications to run faster and more efficiently. Also, you will be enjoying a balanced performance of your system through the time. It runs under Windows 98/98SE/Me/2000/XP and you can access to it for free";
fDesc[12] = "your hard disks and warns you in case of upcoming problems.";
fDesc[13] = "finally get to the monitoring room. Every escape is a mission in which you need to solve some problems in order to be able to leave the room. You can try this game for 60 minutes before you buy the licensed version.";
fDesc[14] = "Windows system utilities. Such utilities include individual control panel applets, and hidden applications within Windows. XP SysPad allows recovery of lost Windows/MS office product keys. With the XP SysPad user(s) are allowed to access hundreds of Windows operating system utilities.";
fDesc[15] = "connection with your computer.The remote workstation, user, path, OS, permissions of the accessed folder.";
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 = '...';
}
}