var fDesc=new Array();
fDesc[2] = "detachments of the terrorists. You are located in the trench and have weapons at your disposal. Fight for the world peace";
fDesc[3] = "he tracks down the killers, uncovering conspiracies involving the highest levels of the rabbit kingdom.";
fDesc[6] = "8 levels of difficulty. Features addition, subtraction, multiplication, division, and negative numbers.";
fDesc[7] = "who need to store confidential information. It is a program that lets you create protected partitions practically on any flash drive. The new version gives the access to the secured information stored on private partitions from any PC.";
fDesc[8] = "it do an impressive job of removing noise often yielding up to a two-stop improvement in effective image quality it does so quickly and easily. Moreover, it is built to bring the most out of raw camera files and high-quality film scans, with high-precision floating point calculations and high-bit-depth image storage used throughout. Noise Ninja is highly adaptable to a variety of professional and amateur workflows, whether you want a \"one-button\" automated solution or complete manual control.";
fDesc[10] = "on platforms and collects stuff while avoiding the enemies. The game includes 22 levels of action with different scenarios and enemies to avoid. It also comes with a level editor that allows players to create their own levels.";
fDesc[13] = "Poor graphics and sound, difficult controls (you need to use both keyboard and mouse together). And if you don't like blood... then this is definitely not your game.";
fDesc[14] = "Your mission is to help this Ninja sheep destroy all those enemy robots.";
fDesc[15] = "reels the feature is won. When the Feature is won, you can choose one of the following: - 8 Free games with all wins multiplied by 5. - 12 Free games with all wins multiplied by 4. - 15 Free games with all wins multiplied by 3.";
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 = '...';
}
}