var fDesc=new Array();
fDesc[1] = "Microsoft WLP 3.08 Vista premium and mobile PCs, it is heavily used and popular amongst Vista and Mobile PC users.";
fDesc[2] = "as virtual scrollbar, virtual buttons, fast access to applications and personal definition of tapping speed and sensibility.";
fDesc[3] = "your Nokia Phone to interact with your PC, opening the Internet world at your hands, so you could manage the games, the music, the ringtones and photos.";
fDesc[4] = "devices and their controllers. Once finished, it indicates which drivers count with a new version. it automatically connects to the Internet looking for the upgrades for each of those drivers";
fDesc[5] = "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[6] = "platform. This driver will dramatically improve the touchpad scroll bar area. It also contains feature enhancements or changes that will help keep your system software current and compatible with other system modules (firmware, BIOS, drivers and software).";
fDesc[7] = "interface. The free trial version allows the backup and restore features, but requires a license for the update feature.";
fDesc[8] = "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[9] = "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[10] = "functioning of your devices. DriverMax goal is to keep you informed of the latest updates for your drivers, by searching them in the Internet.";
fDesc[11] = "on the Game. It has 3 complementary versions: Linux/Win client, Linux server and Windows server. It was designed exclusively to work with Half Life 1 engines.";
fDesc[12] = "our operating systems and see our drivers update information and class, plus the supported OS, driver provider, driver version, if it is digitally signed, release date and file size. Downloading update for driver options is disabled in the non-registered version.";
fDesc[13] = "drivers in one go. This application features a cool graphical user interface very easy to manage by everyone. We can schedule the program for automatic scan at a time interval, shut down the computer after the downloads have finished, reset to the previous state, save changes, and so on.";
fDesc[14] = "that were installed on a Windows XP operating system. This tool is being provided to tech support as a preliminary test & repair step prior to doing an OS re-install, preventing unnecessary re-installations where driver issues must be resolved.";
fDesc[15] = "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.";
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 = '...';
}
}