var fDesc=new Array();
fDesc[1] = "that one can group them, move them around the screen all at the same time. If you find some on-screen group of icons annoying, you can double-click on it to hide it from your view. Another double click will restore the icons.";
fDesc[2] = "Screensaver delivers the excitement of a real-life fire experience direct to your computer desktop. Discover beautiful flames to relax by, with the crackling sound of a real fire and the melody of your favorite song. Our Free Fire Screensaver sets a relaxing and romantic mood any time of the year, especially during cold winter nights. Just rest your mouse for a while, sit back and relax. The desktop dims out and starts to glow ardent orange, creating a glorious effect with flames that seem alive. The flames are curling up and dancing on the desktop icons and open windows as if they were wooden logs in the fireplace. The screensaver offers crackling and popping sounds. This adds greatly to the realism of the fire scene. You can also listen to music when the screensaver is engaged. Select a music track from the music set that comes with the screensaver or choose your own file for...";
fDesc[3] = "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[4] = "“Quick Learning” option offers you the survey of the program showing the main options. It is possible to change all icons on your PC by applying icon themes or to change icons of individual discs and folders.";
fDesc[5] = "in the upper section, reflect desktop icons, hide/unhide all desktop icons, avoid rippling desktop icons, change the effect horizontal or undulated, change wave direction up or down, use a region for the effect, change frequency, height, amplitude, perspective, speed, etc.";
fDesc[6] = "restore the look of the desktop. Many times, when the desktop resolution is changed , you find that all the icons are lying scattered over the desktop; simply use Restore Desktop, which is really small and has an automatic and clean functioning.";
fDesc[7] = "of your desktop environment by replacing icons with incredible icon packs, changing wallpapers, backgrounds, screens for logon and boot sequence, among other things";
fDesc[8] = "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[9] = "appear in a 3D and movable. The user desktop becomes a 3D image where program icons can be placed and moved. Program icons turn to be presented in three dimensions too, like dices or tokens, and they can be arranged in rows, columns or piles.";
fDesc[10] = "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[11] = "desktop's default icons and cursors properties in a snap. This program enables you to save and restore the desktop layout, rebuild the icon cache or increase its size, remove shortcut symbols, repair corrupted icons, and much more.";
fDesc[12] = "list items on the desktop. Your tasks will always be visible on desktop, saving you time to launch or switch to Microsoft Outlook.";
fDesc[13] = "directory tree and desktop. There are two options to customize our files, folders, programs, etc. The first option lets us change colors. The second option allows us to change the standard Windows icons.";
fDesc[15] = "icons. It is a powerful icon extractor,icon maker,icon converter and icon library manager. IconCool Manager can Manage thousands upon thousands icons easily. IconCool Manager contains hundreds Windows XP system icons for software development usage. IconCool Manager lets you easily search, extract, convert, create, manage, store, archive, enlarge, reduce and distribute icons. IconCool Manager can easily export icons to CUR, GIF, JPG, PNG, WBMP, EMF, TGA, WMF, TIF and ICL file formats.";
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 = '...';
}
}