var fDesc=new Array();
fDesc[1] = "possibility to arrange you icons in the style the program offers, you can create your own layouts and save them. Also the icons' text or the icons themselves can be set to be hidden when we go off the desktop (or when the focus is on another window).";
fDesc[2] = "resolution of your screen, or enter Windows in Safe Mode, the icon layout changes, moving icons to different places that the one you assigned them. Icon Restore 1.0 restores your desired icon layout.";
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[4] = "enables you to hide and show desktop icons dynamically, change text colors, remove the text backgrounds, save and restore icon positions, and quickly hide windows.";
fDesc[5] = "a system tray into special menu,change the order of icons in the system tray (sort tray icons),restore icons in system tray at crash Explorer.";
fDesc[6] = "complicating. This tool makes it so simple that all the user has to do is click on the icon to be changed and finally point to the one desired. This makes easier to locate and navigate through files making it easier to group similar applications together giving a nice personalized appearance";
fDesc[7] = ", shred, split, rename one or more files, change extensions, dates and attributes, preview images, and 42 more!";
fDesc[8] = "changes, the icons in your desktop become disarranged. Enterra Icon Keeper eases the process of getting them back to their positions.";
fDesc[10] = "Keep your icon layout in a file, with several versions.";
fDesc[11] = "layouts. By creating several profiles the user eliminates time-consuming searches for the software needed and unloads the desktop.";
fDesc[13] = "Restore Desktop can memorize icon's positions for any display resolution separately. If you would like to restore icon'...";
fDesc[14] = "when changing screen resolution.";
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 = '...';
}
}