var fDesc=new Array();
fDesc[1] = "The animations can be saved as animated gifs to be used on web pages. An example animation is included.";
fDesc[2] = "case you don't know the previous game, your goal is basically to fit a specific number of different pieces into a board with the shape of animal. You can rotate the pieces, but you have to very fast.";
fDesc[3] = "will have to order figures so that you can score points and pass the levels. As you keep on passing levels you will be able to use magic to get better and it will be easier for you.";
fDesc[4] = ", the present and the future. And their predictions always come true. What if these runes are not just ordinary runes?";
fDesc[5] = "the program we can find one Menu Bar, one toolbar, one window and a panel that shows six buttons they are Preview, rendering or delete the keys. With the Menu Toolbar we can create, open, import, export and save.";
fDesc[6] = "three figures of the same color and click on them to eliminate them and get points. The screen will show you a lot of different balls, each one with a color.";
fDesc[7] = "maths program to create activities that promote and teach theorems, introduce concepts, and model real life situations in an easy to understand way with Cabri 3D's visualization tools.";
fDesc[8] = "designed in between CAD and Desktop Publishing style so you can use the ease of DTP with the power of cad core. You can import/export your drawings.";
fDesc[9] = "you to reposition the camera to get better views. Demo Virtual EVE 1.0.0 has an introductory screen where a nude hostess teach you how to control the camera with the mouse.";
fDesc[10] = "The game has got sixty levels, each one with a different difficulty level. It is very easy to use and play. You will be able to pass the levels as you keep on matching figures of the same color in groups of three or more.";
fDesc[11] = "has got different rules and objectives. In the timeless mode you will be able to practice and there will be no pressure for you to finish the level you are playing at the moment.";
fDesc[12] = "puzzles for you to solve. You can use the seven geometric figures to form many figures like animals, symbols, and other, more complex figures. The demo version is limited to about an hour of game.";
fDesc[13] = "solve puzzles joining figures of the same color or forms to discover one of the nineteen different dinosaurs available in the game. The storyline of the game is very interesting and will keep you amused and amazed for a long time.";
fDesc[14] = "all ages. The game is very easy to play, you play it just with your mouse. You will have instructions that will guide you on how to get yourself through the levels. You will have to advance from level to level searching for different objects.";
fDesc[15] = "colors into the boxes provided. Or, if you need to color code a resistor, you can input your values and the program will provide you with the correct color code.";
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 = '...';
}
}