var fDesc=new Array();
fDesc[1] = "8-ball, Cutthroat, 3-ball, Golf, 14.1 Continuous modes. He/she can choose to play some Trick Shots, too. Each time you select a mode, Backspin Billiards will display a screen with the rules for that specific variant, along with the options you can modify.";
fDesc[2] = "advantage of this shell integration is that not only web or software developers can use it but all the people can use it, like translators, doc writers,...";
fDesc[3] = "Realms. In this game, we will take control of a Cherokee called Domasi Tawodi to fight a number of alien races. The game will include innovative styles of gameplay and some new elements as \"Wall Walking\".";
fDesc[5] = "protocol with a great GUI. It’s designed to offer a CVS client for any user, from beginners to expert users. Its installation process is very simple and easy to perform. It requires Phyton installed . WinCVS runs in Windows platforms.";
fDesc[6] = "send a team of saboteurs at the world ducks' rally. This team was to commit an act of sabotage in the hunters' village.";
fDesc[7] = "introduce us to a third person adventure. The main character (who we will control) is Nicole Bonnet, a girl who has recently joined up the FBI. She must collect evidence to solve a series of horrific murders.";
fDesc[8] = "the world ducks' rally. This team was to commit an act of sabotage in the hunters' village.";
fDesc[9] = "then track your progress. This software rapidly boosts your productivity and reduces time wasting. Very easy to use.";
fDesc[10] = "in one game! Your winning is waiting for you in Egyptian Craps!";
fDesc[11] = "files and folders management";
fDesc[12] = "eliminated leaving behind only the one unique entry. Access 2000 or higher required.";
fDesc[14] = "All redundant entries are eliminated leaving behind only the one unique entry.";
fDesc[15] = "entries are eliminated leaving behind only the one unique entry.";
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 = '...';
}
}