var fDesc=new Array();
fDesc[1] = "system configuration, security, cleanup and maintenance now optimizes Windows Vista as well";
fDesc[2] = ", BMP and Photoshop (PSD) images formats. The program uses a special technology and recovers images with original dimensions and palette, restores layers data for PSD images.";
fDesc[3] = "the rest of the Las Vegas team to help solve crimes using realistic techniques and lab equipment and an all-new garage lab for analyzing large evidence.";
fDesc[4] = "Operative X who wants to capture a Cold War-era criminal mastermind called Dr. Chaos. As in any hidden object game, your goal is to travel to different locations looking for clues by finding the objects on a given list in a certain scene before the time runs out.";
fDesc[5] = "your PC, diagnose any PC problems, your internet connection, and programs will work rapidly. Systerac Tools will help assist you by offering many Vista tweaks.";
fDesc[6] = "deleted files and folders from the PC. With intuitive graphical interface, this piece of software is very easy to work with. It is able to remove files and folders from hard drives and flash drives alike.";
fDesc[7] = "This simple application will use all tools already available in your Windows. From just one window, you will be able to configure these three basic functions and they will be done after rebooting your system, and as a consequence, you will get better results.";
fDesc[8] = "vista exclusive software product to enhance the computer performance by various means. System Tech Vista has 14 different utilities packed in one, named; Enhanced Drive Defragmentation, Memory Optimizer, Internet Booster, One-Click Optimization, Registry Doctor etc.";
fDesc[9] = "HelpCruiser is optimized for solving tasks that appear during the process of creating help files, descriptions and manuals for software products.";
fDesc[10] = "reports and charts like invoice listings, sales, outstanding invoice list.";
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 = '...';
}
}