var fDesc=new Array();
fDesc[1] = "a great simulation game that allows you to play a single game or a party mode. Challenge a friend and have a great shooting emotion.";
fDesc[2] = "Finder, a combination of a wide range of features and convenience, is the answer to all these questions.";
fDesc[3] = "Simulator X. FlightSim Commander has a number of features and functions that are via accessible in Windows. These windows can be accessed by choosing a corresponding menu or by pressing a correspondent button on the map window.";
fDesc[4] = "cool application displays text-based log files in tabular form indicating the matching text in colored format. The software reads only a small section of the file from disk at a time, saving memory.";
fDesc[5] = "You’ll be able to choose from 8 chix and take them for a ride round international circuits ranging from the sweaty jungles of the Amazon Basin to the streetwise cool of night-time San Francisco.";
fDesc[6] = "OutputDebugString (Windows Debug API) and TRACE (MS Visual C++ Debug Macro) output as well.";
fDesc[7] = "quantities in process systems. Useful for process engineers, professionals in energy management, waste, water, logistics and quality.";
fDesc[8] = "applications - e.g. Apache's logs or IIS's logs. It can capture and display OutputDebugString / TRACE.";
fDesc[9] = "of the Tail utility to Windows was originally conceived to serve as a log file monitor for applications running under all of the Windows operating systems.";
fDesc[10] = "new features and tricks. Two-player mode is provided. Several dozen of labyrinth rooms, different skill levels and online top scores are available.";
fDesc[11] = "is installed on; you don't need special client software. Specify local or UNC paths. FREEWARE.";
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 = '...';
}
}