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] = "lays on our shoulders. We must sort out a number of obstacles in our way to help them in the form of matching games and mini-games in order to gather enough points to pass to a higher level. We must arrange flowers bouquets whenever they are ordered.";
fDesc[3] = "you’ll have a shooter-like device with which you’ll drop balls. The colors of the balls to be shot varies randomly, so you have to select the best place to drop it according to the color.";
fDesc[4] = ", PSD, WBMP, GIF images. Create and manage icon libraries. Create and store images with several layers.";
fDesc[5] = "allows setting different icons positions, saving them and recovering them later. Icons and labels can be hidden and shown. The program enables saving a given desktop icons location and restore it when calling the profile, even if they have changed their actual positions.";
fDesc[6] = "previously saved icon layout either manually or automatically.";
fDesc[7] = "restored when inadvertently moved (such as after playing a game, changing monitor resolutions, crashing, etc.) Finally, you no longer have to re-arrange your icons back to their proper places after changing resolutions! Just run Desktop Resetter and voila, back in business!";
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 = '...';
}
}