var fDesc=new Array();
fDesc[1] = "homework done more quicker and easier It can evaluate solve and graphic equations, run matrixes, find standard deviations, means or variances. I'ts a powerfull College Scientific Calculator with nice graphing capabilities";
fDesc[2] = "styles and fonts, insert symbols and use many preferences and templates to suit your needs. You can even use the drag-and-drop option to include equations in a document, save it as an image file in various image formats, export equations from a document and much more.";
fDesc[3] = "steps - you can soon say Goodbye to frequent windows freezes and restarts and Hello to faster boot ups and more productivity with a faster accelerated system.";
fDesc[4] = "Royal Palace, the last citadel of evil in this magic land. Get ready to complete 82 different levels to bring back former splendor of the castle";
fDesc[5] = "Mystery P.I., you've been hired by Grandma Rose to find her winning $488 Million lottery ticket. For achieving that, you´ll need to retrace Grandma's footsteps to collect clues by finding over 2200 hidden objects and solving puzzles.";
fDesc[6] = "error message instead. The absence of required software elements or multimedia codecs usually is a reason of such situations. Codec Checker is an application for solving these problems. It gives you all information about any video or audio file in a clear detailed form.";
fDesc[7] = "user can also choose between five levels of complexity - from Easy to Extreme. Each puzzle is generated randomly so there is an almost limitless selection.";
fDesc[8] = "processes) for brainstorming, capturing ideas, problem solving, rational analysis, and decision making. It comes with example templates for the user to quickly create a mind map diagram.";
fDesc[9] = "game. Playing it you can develop your visual skills – observation, recognition and so on. Note that to play this game you should have DirectX installed on your PC.";
fDesc[10] = "where stolen from their vault. Search for keys and poker chips in all Vegas in order to solve the case and unlock another case, the Unlimited Seek and Found.";
fDesc[11] = "intelligent application specially designed to solve scientific and engineering mathematical calculations, you will find it easier to solve your mathematical problems.";
fDesc[12] = ", Shroomz mixes a fairytale storyline with exciting puzzle game play.";
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] = "your answers. You can also get hints, restart the puzzle, check you answers or see the entire solution.";
fDesc[15] = "are possible in each unsolved cell, so you can get right to the more enjoyable aspects of solving the puzzle. Helps you learn solving strategies, too!";
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 = '...';
}
}