var fDesc=new Array();
fDesc[1] = "artifacts, and you enter The Zone, a radioactive hot spot. With free-roaming capabilities as well as many weapons and RPG elements, this game is excellent. Very recommended.";
fDesc[2] = "different colors with numbers on them. You will also have a card with numbers and colors. Every time you see that the number is both in the line and on your card you will have to click on it so that it disappears and you get points.";
fDesc[3] = "S.T.A.L.K.E.R. surprised everybody in the past with its irresistible ambience and a very wise idea to combine such concepts as Survival, FPS or even role. Now comes the turn of this prequel that will show whether it is really at the height of its admired predecessor.";
fDesc[4] = ", through to the coded solution. User should beware that this tool is more complex than a simple UML diagram editing tool, in that, through the use of the Model Drive Architecture (MDA) standard, the tool supports complex modeling which is realizable in code.";
fDesc[5] = "way of looking up unknown words and definitions. It allows you to easily search for new words and their concepts, without needing to open a separate dictionary, or going to a dictionary in a website.";
fDesc[6] = "game. Students can only achieve success if they make the right choices in their car setup. The game can run in low end computer, and the physics engine is very accurate. This is a great game for students learning engineering concepts.";
fDesc[7] = "is based on such mental techniques, as Mind Maps and Concept Maps and allows you to conveniently work with big maps";
fDesc[8] = "without missing any important information. Using sophisticated statistical and linguistic algorithms, it pinpoints the key concepts and extracts the most relevant sentences, resulting in a summary that is a shorter, condensed version of the original text. Copernic Summarizer can analyse a text of any length, on any subject, in any one of four languages, and create a summary as short or as long as you want it to be. It can summarize Word documents, Web pages, PDF files, e-mail messages and even text from the Windows Clipboard. Thanks to the patent pending WebEssence technology, which automatically removes from Web pages irrelevant text and content (such as advertisements and navigation items), Copernic Summarizer focuses on the essential text elements, which results in even more relevant summaries. Once summaries have been generated, they can be printed, saved (in plain text, RTF, HTML...";
fDesc[9] = "most powerful way to become a strong player. For people who want to improve their chess knowledges quickly and efficiently. By GM Gilberto Milos.";
fDesc[10] = ", kids will explore fascinating science topics like astronomy, mechanics, ecology, genetics, and more! Available for Windows and Mac OS based systems and designed for kids of ages 8 and up.";
fDesc[11] = "shelter in a mountain cave. Now the Zoombinis find themselves trapped in a hazardous tunnel where mysterious creatures lurk. The Zoombinis’ escape rests squarely on your shoulders, or more accurately, on your brain.";
fDesc[12] = "have to do is to program a robot that moves in different scenarios. With RoboMind you can write your own scripts directly or use a remote control that automatically shows you the instructions of the movements that will send the robot.";
fDesc[13] = "technologies. You can either take this lesson on-line from the MSDN web page or you can download it to your computer. At the end of each section there’s a test to help you know if the concepts are understood. It doesn’t require any prior knowledge.";
fDesc[14] = "powerful Search feature, a graphic index, and the commentaries and reference books installed. This module requires BibleMax software.";
fDesc[15] = "different words related to concepts from a dictionary. Flash cards are also available to display the key concepts. The “exam” option allows us to test ourselves in regards to our memory.";
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 = '...';
}
}