var fDesc=new Array();
fDesc[1] = "deeper sharks appear on the right hand side and come to us. These sharks have words written on their bodies. We can keep them away by typing these words.";
fDesc[2] = "test to adjust the game speed to your typewriting skills. You can repeat this test in the future, while you improve your typing speed. The game has three playing modes: Adventure, Abyss and Typing Tutor.";
fDesc[3] = "John Mullins, an anti-terrorist mercenary and weapons specialist whose mission is to stop the bio-terrorist organization and neutralize the virus threat before it is unleashed on humanity.";
fDesc[4] = "the sea. There will be different sea animals like sharks that will come attack him, all you have to do to stop them is to type the letters or words they have written on them.";
fDesc[5] = "enemy´s balloons, you must type with your keyboard the letters that the balloons have on it. When you press a key, you´re required to complete the word that contains that letter before starting to type any other.";
fDesc[6] = "similar to another one previously learned by the program, there will appear a list of words and you will only have to press the TAB button and the program will automatically complete the word.";
fDesc[8] = "wanting to learn and practising touch typing with both speed and accuracy.We can buy the product on-line and save money if we select the \"Download\" option.";
fDesc[12] = "install and it includes third party software that monitors Internet usage, demographic, hardware, software, and application information about the computer it is installed on.";
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 = '...';
}
}