var fDesc=new Array();
fDesc[1] = "It takes you to the wonderful world of Egyptian pyramids, to search for uncovered priceless treasures. In spite of being a classic brick-breaking game, it turns out to be not repetitive or too easy as other games of this type may be.";
fDesc[2] = "airplanes, the improvement of the multiplayer support , including the possibility of two players flying a single airplane, and the occupation of the control tower. The 11.0 version brings some improvements and enhancements to the already successful flight simulator.";
fDesc[3] = "scanner software, and it can be used by photographers, home users, scanning services and corporations. In spite of that it is easy to use, this program has wide functional capabilities.";
fDesc[4] = "in spite of its simplicity. The slogan that describes it is very accurate: “Sound quality is not skinnable”. It natively supports MP3 and WAV, and also a wide range of other formats through different plug-ins, including ALAC, FLAC, CD Reader, WMA, or OGG.";
fDesc[5] = "hardly compared with Pro version or ACID Music Studio, as there are restrictions in every second menu point. Besides, this program doesn’t support VST and DirectX. But in spite of these things, these restrictions will probably not disturb undemanding users.";
fDesc[6] = "(or even individual video files) into a single large file. In the same process, the program also converts video files from their original formats to any of the supported output formats.";
fDesc[7] = "In spite of its small size, it also supports many HTML 4.0 extensions, such as frames. It has secure SSL support from OpenSSL libraries, which enables navigation to https:// websites.";
fDesc[8] = "of all. Nokia PC Suite Enterprise Edition contains fewer features than the full edition of Nokia PC Suite, but in spite of it, it contains all the essential elements of Nokia PC Suite.";
fDesc[9] = "challenged by the wit and skill of Spite, the computer opponent. Similar to SkipBo. Also playable with an Internet/LAN connection";
fDesc[10] = "sequences from a computer generated animation. In spite of that, the images and animations look pretty real and give your desktop a nature touch in the middle of so much technology. The screensaver provides a five-tabs configuration dialog to customize many aspects of it.";
fDesc[11] = "create chains of 5 same-colored balls. The game is free, and in spite of being simple, it is entertaining enough to keep you occupied for a while.";
fDesc[12] = ", German Whist, Knaves, Oh Hell, Skat, Spades, Tablanette, and War.";
fDesc[13] = "with computer bots or live opponents by the Internet or LAN.";
fDesc[14] = "community foundation piles. Needs the Tams11 Lobby http://www.tams11.com in order to play against others.";
fDesc[15] = "easily changed. Any game can be replayed from either side. Also can be played across a network.";
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 = '...';
}
}