var fDesc=new Array();
fDesc[1] = "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";
fDesc[2] = "potential to become a really great tool over time. ISODisk tackles two main tasks: it allows you to mount disc images and it creates ISO images from CD-ROM discs.";
fDesc[3] = "are in the \"cloud\" and map those services to drives in your computer. We have been over other applications that allow you to upload and download files to services like Gmail in the same way.";
fDesc[4] = "This allows you to use your favorite applications to edit files and save them directly to the server.";
fDesc[5] = "drivers and removable devices. After the scanning is completed, we will be able to know the size for each selected unit, folder, file, etc., in Bytes, Kilobytes, Megabytes, and Gigabytes. It is possible to see the content volume in percents, sort by name, size, etc.";
fDesc[6] = "media, the operations contain 'Delete', 'Rename', 'Create', 'Copy', 'Move', 'Insert', 'Add', 'Remove', and so on.";
fDesc[7] = "disk image. It can backup any folder to any destination (network drive, USB external disk..) It comes with its own DVD burner diver..";
fDesc[10] = "using the standard Windows 'Open/Save/Save As' dialog boxes. You can use Explorer's drag and drop feature to mo...";
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 = '...';
}
}