var fDesc=new Array();
fDesc[1] = "Samsung mobile phone and your PC. It offers many features such as a Networking Wizard, which allows you to connect to the Internet; a Multimedia Player to play different files; and many other options to manage and organize your files, your phone contacts and your messages.";
fDesc[2] = "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[3] = "interface. The free trial version allows the backup and restore features, but requires a license for the update feature.";
fDesc[4] = "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[5] = "using simple steps. PDF-XChange can output a PDF file with all the properties of a professional PDF file. You can select PDF-XChange in the printer tab while printing a Microsoft Office document to create PDF file. PDF-XChange enables you to set passwords, permissions for the PDF file.";
fDesc[6] = "hardware and install them onto your computer.";
fDesc[7] = "maintain our drivers in perfect conditions. We can use this program to update and make a backup of our drivers, thus preventing their loss in case of problems with the computer, or the driver itself. We can install/remove a specific driver, install a new hardware device, restore drivers, etc.";
fDesc[8] = "existing FrameMaker users who want to author and publish technical documentation in multiple languages. Adobe FrameMaker 8 software combines word processing and XML-based structured authoring with template-based publishing.";
fDesc[12] = ", Display adapters etc.) for later reinstallation.";
fDesc[14] = "system working safer, longer, and better by making sure it's fully updated.";
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 = '...';
}
}