var fDesc=new Array();
fDesc[1] = "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[2] = ", and system information in one intuitive, easy to use interface, or at least thats was Dell goal! Though it improve the benefit obtained by it predecessor DellSupport, it still need to improve some of it features.";
fDesc[3] = "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[4] = "help the customer setup a basic wireless connection. It offers same functionalities includes on Windows XP / Vista Wireless manager plus some enterprise level features howeever I found it buggy so I recommend to stay with Windows Wireless client.";
fDesc[5] = "from Creative, that includes the webcam console ( basic webcam usage), webcam center (basic and advanced usage) or webcam central (replacement for webcam center) and Creative livecam application (animated avatars)";
fDesc[6] = "With Dell Webcam Center, you can perform photo and video captures or perform advanced tasks such as remote monitoring, motion detection, and time-lapse video capturing.";
fDesc[7] = "software problems. It helps identify the most common modem failures. This new tool replaces the Modem Helper utility and its only for Conexant Modems";
fDesc[8] = "installments, office functionalities without the need to load the whole operating system, Program 4.x series removed the preboot functionality for no documented reasons, focusing now on bringing the best experience within Windows, MediaDirect 4 now supports Bluray!";
fDesc[9] = "of limitations. The first impression you get running the application is the lack of effort from Dell to make their dock experience at least similar to stardock freeware.";
fDesc[10] = "resolution and picture adjustments. Tray Icon enables user to launch the application and set it to mini-mode. Picture Slideshows can be created using the Stitch-Video feature.";
fDesc[11] = "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[12] = "Dell Video Chat, clothed in black, has a beautiful and comfortable interface, very intuitive and not that different from other commonly used software of this kind.";
fDesc[13] = "beginning in December, 2004. The software provided you with access to browsing and playback functionality for digital music, pictures, videos and DVDs, in a simple and easy-to-use interface.";
fDesc[14] = "must be a Dell system owner with factory installed Dell Cineplayer 3 in order to use it. Dell Cineplayer support the following disc formats: DVD-Video DVD-VR DVD Slide Show VCD VCD Slide Show";
fDesc[15] = "it also enhances it adding al lot of basic and advanced configuration, visualization and customization options for your home network. Dell Network assistant tries making your home network easier to manage, and it succeeds in many respects";
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 = '...';
}
}