var fDesc=new Array();
fDesc[2] = "because of the advent of Mac computers, which all come with an inbuilt application that does just this. Dexpot allows you to create up to four different desktops in which you can add files and shortcuts, and you can have programs running on every one of them.";
fDesc[3] = "configure up to 20 virtual desktops. Besides, switching from one desktop to another can be done easily by pressing configurable hotkeys or using your mouse.";
fDesc[5] = "organizeor find your remote connection quickly.";
fDesc[8] = "handy program you will be able to open more windows and run more programs without overcrowding your screen. The user interface is really intuitive and simple.";
fDesc[9] = "creates up to 9 virtual desktops and allows you to have different windows in each of them.";
fDesc[10] = "player). You can easily transfer various content as well as applications. This program enables you download electronic and audio books, music, any MP3, HTML, text file or PDB, synchronize between manager and Microsoft Outlook, copy files.";
fDesc[13] = "specify your wallpaper list, right click on Desktop and select desired wallpaper in popup menu!";
fDesc[15] = "virtual desktops; so in this way, if your screen is not as extensive as you desire, or you use a lot of programs, then Virtual Dimension is a good solution to increase the productivity of your Windows desktop.";
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 = '...';
}
}