var fDesc=new Array();
fDesc[1] = "very high speed rotation that can sometimes occur when ripping CDS or DVDs to the hard drive. Acoustic Silencer will not remove defects caused due to improper disc geometry or defects in the drive clamping mechanism.";
fDesc[2] = "record and play multiple tracks of audio and MIDI virtual instruments at the same time. You can the add effects like reverb, delay, guitar amp simulator, flanger or some third party effects.";
fDesc[3] = "are stored in a single text-based ini file. The information is shown in yellow rectangular windows. Once you´ve take som note on them, they will stay on screen (even after reboots) until you take them away, just like a post-it.";
fDesc[4] = ", Hexxagon, Pong, Snake, Space Invaders, Tetris, and Tic Tac Toe. Each game has its own rules and controls, identical to the original arcade games.";
fDesc[6] = "they add few new things to the games that are included. The games included in this collection are: Snakes & Ladder, Checkers, Chess, Backgammon, Reversi, Nine Men’s Morris, Ludo and Tic Tac Toe.";
fDesc[7] = "the tutorial to learn the rules without reading the manual and play it against your friends or various computer opponents!";
fDesc[11] = "schools, choirs, orchestra, amateur theaters and so on to help to organize small- and medium-sized events. This program can be a good alternative to complex graphics programs. It is easy to use and offers many functions.";
fDesc[12] = "conversions, astronomy, geometry, pi, chemistry, electricity. Divx Calculator. Games on gravitation, billiards...";
fDesc[13] = "interface. Cool board game for everyone, everytime, everywhere. Just : Simple, Easy Tto Play, Fun.";
fDesc[15] = "Crosses. Aba Daba have a modern unusual interface with different skins, attractive music, nice sounds and different skill levels.";
fDesc[17] = "of play supported from beginner to expert. Based on the classic game of 'Captain's Mistress' this strategy game will be familiar to all";
fDesc[19] = "with positive and negative numbers. Supports 1-2 players with multiple difficulty levels. Intuitive interface and easy TicTacToe based rules.";
fDesc[20] = "intuitive user interface, very colorful and customizable, although with not very great graphics. The game offers four themes (flowers, animals, trees and geometric shapes) and three difficulty levels (easy, medium and hard).";
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 = '...';
}
}