var fDesc=new Array();
fDesc[1] = "Download Manager will let you have full control over your downloads, accelerating download speed to squeeze your bandwidth.";
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] = "mail servers. Is the ultimate antiviruses and antispyware used for home and enterprises. Gives the user the protection needed to keep their valued data safe.";
fDesc[4] = "output. In fact you can access to online radio stations and enjoy various types of music like (Rock, Pop, Jazz, Classic, Vocal, User, and much more.), in multiple languages.";
fDesc[5] = ", burn, convert, record and do much more with this program. Play the most popular video formats or convert audio from one format to another. Record analog audio from the computer and add sound effects, such as cross-fader, reverb, and x-bass.";
fDesc[6] = "includes a new interface, new tools, more document viewing options, online meeting capabilities, support for more secure workflows, and a host of other new features to help you save time and money.";
fDesc[7] = "ATI Catalyst Control Center can be used to fine-tune your graphic settings, enable or disable connected display devices, and change the orientation of your desktop, etc. Many features present you with a preview of your changes before they are applied.";
fDesc[8] = ", 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[9] = "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[10] = "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[11] = "support for Windows Mobile 5 and 6. Thanks to this application we can keep updated our PDAs or Smartphones with our Home or Work PC, in order to keep always our pictures, emails, calendars and contacts in both.";
fDesc[12] = "has been designed to receive the latest news for our Nikon products. We can access this application from the Nikon Transfer program interface.";
fDesc[13] = "is easier to say what this program can’t do than to say what it can do. One of the best programs for working with media files!";
fDesc[14] = "file formats. Different file format supported by Jet Audio are MP3, OGG, WMA, APE file and so on. It allows the user to play music albums and video files, manages digital media files including automatic browse options.";
fDesc[15] = "cam. This amazing application facilitates capturing photos and videos of everything displayed from your web cam. The application also allows you to view pictures, videos, create and manage albums.";
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 = '...';
}
}