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] = "Using this software, you will have access to a lot of different typing exercises that will improve your skills. The program has got a friendly interface that will guide all users on how to complete the lessons.";
fDesc[3] = "versions. The main difference is that the game is done completely in 3D and allows a total control of the camera, and may change the angle of vision, getting closer and farther from the details of the adventure map as well as during the battles.";
fDesc[4] = "want to take with you and don't want to copy and paste it every time a change is made, or when you need your desktop computer and your laptop to have the same files.";
fDesc[5] = "virtual rookie rider whose virtual career is developed by the skills of the player resulting in him becoming the ultimate MX athlete if all of the challenges of the tracks can be met.";
fDesc[6] = "to these amazing places. Travel around the world in order to re-built the 7 wonders; provide workers with construction materials as you destroy blocks of gems in the puzzle games.";
fDesc[7] = "skills and knowledge. The farmland environments and vehicles have been simulated with such realistic attention to detail, and are so easy to navigate, that you will soon be enjoying a virtual taste of the good life.";
fDesc[8] = "features a multiplayer version, which allows the user to host and join multiplayer games through the popular matchmaking service, Game Ranger.";
fDesc[9] = "this software, you will be able to test your typing skills and to practice to get your skills improved. The program has got a friendly interface that will guide all users on how to test their skills and how to do some exercises to improve.";
fDesc[10] = "made to drive the way to success. You Speed, Power, Performance and your attitude will determine if you are worth it or not. The package has thirty cars designed on the original hot wheels specifications.";
fDesc[11] = "land where words have yet to be invented. Test your word skills in 25 unique game types and watch your tower soar. Succeed, and your tower will reach heights never imagined.";
fDesc[12] = "skill nowadays, due to the increasing role of computers in every human activity. Through simple lessons, aided by sounds, the program will train kids to use the keyboard correctly.";
fDesc[13] = "Teaching-you Project Management Skills is the perfect aid to ensure you complete your projects on time within the budget and that its performance can be monitored and reviewed over time.";
fDesc[14] = "a good typing program to help the cause. This is a free program, which basically measures the typing speed on a daily basis and tracks the improvement as time progresses.";
fDesc[15] = "well as improve your written skills and your performance in those all important meetings. The cheapest and most comfortable way to learn communicating.";
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 = '...';
}
}