var fDesc=new Array();
fDesc[1] = "as virtual scrollbar, virtual buttons, fast access to applications and personal definition of tapping speed and sensibility.";
fDesc[2] = "Discs. The Essential version is normally included within bundled hardware like recorders or pc systems. The software included may depend on the manufacturer specifications.";
fDesc[3] = "hardware information database for over 68000 devices! Yet, the program is very small, about 12MB. It includes \"Monitor Diagnostics Test\", which is a complete tool for tweaking your CRT and LCD monitor.";
fDesc[4] = "standards), Popular (used by many tools), Tested and Reliable (it has been available for years), easy to use for the final user (windows installer), Multi-platform (Windows NT/2000/XP/2003), commercial support in the website of CACE Technologies.";
fDesc[5] = "synchronization experience with Windows®-powered PCs and Microsoft Outlook right out of the box. Note: Microsoft ActiveSync works only with Windows XP SP2 or earlier.";
fDesc[6] = "settings. The program detects the presence of any wireless networks within range of the adapter, providing automatic configuration and connection.";
fDesc[7] = "computer including that which came with windows (like the mouse and keyboard driver). It can scan and automatically download the drivers from the respective developer / manufacturer website.";
fDesc[8] = "MP3 and MP4 devices. It includes AMV Video Convert Tool, AMV Player, Media Manager, MP3 Player Disk Tool and MP3 Player Upgrade Tool.";
fDesc[9] = "application allows you to crack the protection of both ZIP and RAR files created with most applications. It uses two methods to achieve this task: a brute-force approach and a dictionary-based approach.";
fDesc[10] = "devices, such as printers, cameras, USB drives, graphics cards, sound cards, etc. It´s important to have the most up-to-date drivers to ensure that your devices work flawlessly.";
fDesc[11] = "to be used on notebooks. The system fine-tunes the power consumption on notebooks by coordinating the activity of software and hardware integrally. It will increase the battery life cycle and spread the charging intervals.";
fDesc[12] = "instance, if you shoot a ball down a pocket with the Dommelsch logo, you will receive one of three kinds of jokers. These let you sabotage your opponent's balls in three different ways. For example you can make one of your opponent's ball stick firmly to the table.";
fDesc[13] = "show you all the details regarding your hardware, such as your motherboard´s manufacturer, model, serial number and BIOS; your processor´s manufacturer, version, voltage, frequency; how much memory your system has, and more.";
fDesc[14] = ", Double Driver scans your computer and lists all the hardware devices that are installed, then it retrieves the driver information for each one of them and lists those, too.";
fDesc[15] = ", and Blue-Ray discs. It does not matter what is printed on the cover of your discs; with this program you will get the actual information about most of them.";
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 = '...';
}
}