var fDesc=new Array();
fDesc[1] = "for everyone with very few computer skills to show ideas or products in a tidy way, using text, images, sounds and transitions. It can even be connected to a projector to view the presentations on a large screen.";
fDesc[2] = "broken files. It can also capture snapshots, video or audio from the file. You can nearly make all the possible changes in a file. So give it a try and you won’t be disappointed.";
fDesc[3] = "commercial. Metacafe Pro 1.2 is a program to let you access that material directly, without a browser, with some addons.";
fDesc[4] = "and will captivate you while you are playing. The game consists in a bunch of words mixed up on the screen that you will have to find to get points.";
fDesc[5] = "dimensions. Celestia runs on Windows, Linux, and Mac OS X.";
fDesc[6] = "think and keep you up playing and learning for a long time. There are two different modes to play. The twister mode or the quizzler mode. The twister mode will show you a sentence with a blank space you will have to complete with the letters it shows you.";
fDesc[7] = "favorite stations on TV. Music, news, educational, sports & shopping, together with TV in English, Spanish, German & Arabic";
fDesc[8] = ", short-answer, jumbled-sentence, crossword, matching/ordering and gap-fill exercises for the World Wide Web. Hot Potatoes is freeware, and you may use it for any purpose or project you like. It is not open-source.";
fDesc[9] = "of some words. The two modes of the program – the teaching words mode and the spelling mode – allow children to see images depicting words, to listen to pronunciation and to learn spelling, so both audio and visual perception is engaged simultaneously.";
fDesc[10] = "many cities and information about their population and country names. The position of the cities shown corresponds to the real coordinates. You are able to add your favorite cities to the map, as well as eliminate the included cities and leave only the added ones.";
fDesc[11] = "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[12] = "task is to have fun and collect as many tickets, as you possibly can. Once you have a certain amount of tickets, you can trade them for prices. There is no time limit and you can re-play each game as many times as you want.";
fDesc[13] = "topics in electronics, mathematics, geometry, statistics, programming, chemistry and electricity. You will also be able to use Yenka to create lessons using its content.";
fDesc[14] = "features a beautiful and intuitive user interface that can be used by people of all ages. With its clear, graphical training lessons, you will be able to recognize and read the musical notes without any conscious effort.";
fDesc[15] = "wizard. The learning modules are composed of flashcards that can contain audio, video, and images, and also examples of any type. The software comes with two ready to use learning modules, one about languages and other about world capitals";
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 = '...';
}
}