var fDesc=new Array();
fDesc[1] = "displays the results in a web browser. The tool works with Internet Explorer or Firefox with a Plugin. The program resides as a small icon in your desktop system tray.";
fDesc[2] = "coolest theme: Luna Royale. It includes the Aero cursors as well as system icons (My PC, My Documents...) and all the system sounds from Windows Vista.";
fDesc[3] = "it (program short cuts, system commands, etc.) as well as change its look by \"skinning\" it.";
fDesc[4] = "into your desktop organizers, typically Microsoft Outlook and Microsoft Outlook Express, among others. The programs allows anyone to stay organized, provided they use any Infotriever-enabled partner.";
fDesc[5] = ", otherwise, only complex about the Registry. Many of these options make your everyday work with the system quicker, lighter, more sure.";
fDesc[7] = "creating distinct work areas for your different tasks? This is your way to go! Create up to 9 separated screens, so called virtual desktops.";
fDesc[8] = "Windows 95/98/NT and is totally free.";
fDesc[9] = "intefere with your other activities on your PC cause they stick to the desktop.";
fDesc[12] = "transitions and music. 1,000's of wallpapers available. Automatic daily wallpaper downloads. Customizable hotkeys.";
fDesc[15] = "all windows at once, Shutdown or Reboot the system with one click, Quickly logoff.";
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 = '...';
}
}