var fDesc=new Array();
fDesc[1] = "They carry out the most diverse actions to increase your system's performance. The main star of this application, in my opinion, is the RAM optimizer. Basically, what it does is make sure that your applications always have as much memory as possible.";
fDesc[2] = "packs a punch. Collide-o-scope: Colorful, bouncing and homing chain of bullets. Neon Blast: Bright flashes of light confuse and damage the opponent.";
fDesc[3] = "any text in any desktop application. Translations and dictionary results are retrieved by default from the Babylon translation database, but you can expand the scope of your search and get more results by adding new dictionaries";
fDesc[4] = "those releases are anything but legal, but that goes outside of the scope of this article. What NFO-Viewer does is really simple, but extremely helpful.";
fDesc[6] = "is for Windows XS or 2000. All you need is to download Network Bridge, make settings for the work on your device and you can use Internet (which is on PC) on your phone. At the same time the phone should be connected to the PC by USB cable.";
fDesc[7] = "Mainframes and UNIX hosts under Windows platforms. z/Scope is solid, fast, secure, inexpensive and provides users with state-of-the-art interfaces";
fDesc[8] = "and performance tuning purposes. The ability to see hidden and invisible windows is a pioneering feature.";
fDesc[9] = "information. Send info to Spreadsheets. File Search. Search All text fields!";
fDesc[12] = "accessing AS/400 iSeries and IBM Mainframes under Microsoft Windows platforms. z/Scope Warp provides SSL 2,3 and TLS 1.0 encryption.";
fDesc[13] = "sizing into the domain of project governance and software portfolio asset management. Since 2003, SCOPE has taken over as the product of choice for Project managers worldwide. They choose SCOPE to model and quantify of their software projects, for input into project estimates, productivity comparisons and client scope negotiations. They recognise that SCOPE is the only functional size measurement software to provide a quantified audit trail of requirement’s changes and to quantify rework. The state of the art, multi-lingual user interface and reporting make it quick and easy to enter quick function point estimates or detailed exacting counts that cross reference all data elements and processes.";
fDesc[14] = "product, manufacturer, and place to buy information. Profile Exchanges. Imaging and PDF Tools. File Search. Search All text fields!";
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 = '...';
}
}