var fDesc=new Array();
fDesc[1] = "possible to enter My PC, My Net places, My documents, My music, My images, the Control Panel, the Recycle WasteBasket, as well as the configuration itself and the developer web site (Punk SOftware).";
fDesc[2] = "PDF format to as the standard for giving downloadable information pages or printable forms. This software helps you do all the operations on a PDF file, like inseting password, converting images to text, compressing and reducing file sizes, etc.";
fDesc[3] = "of time travel that we are used to. Instead, it is more of a mental, inner journey to the past of the main character's ancestors. You play him, the main character.";
fDesc[4] = "factions representing the powers of the Mediterranean. Your scenario is Europe in middles ages with a lot of political intrigues and the influence of the Church. In that time, The church controlled the international political issues and has total power.";
fDesc[5] = "famous books of J.R.Tolkien. Plot: Of course that you will be able to find all the characters of the book, but in this case you will be able to be in more battles than in the film.";
fDesc[6] = "little color squares to eliminate them and stop them from reaching the middle of the screen, if they touch the figure located there, it will explode and you will lose. You can eliminate the figures when there are groups of three or more squares of the same color together.";
fDesc[7] = "Lionheart, in front of the legions of Europe, or the elusive Saladin, leading the Arab army, you will be able to face a bloody war for the sole purpose of conquering the enemy stronghold.";
fDesc[8] = "originality of the show that makes Legends. You are going to travel with this game to Europe of the Middle Ages where the life of its people passed through the castles.";
fDesc[9] = "screensaver presents a map of Middle Earth with a rotating Ring of Sauron that changes its size as it gets closer to you for a better view.";
fDesc[10] = "is the creator of the original script of the video game.The argument of Jericho takes you to a city in the Middle East, Al-Khali, erected on the ruins of other ancient cities.";
fDesc[11] = "you aboard a wooden ship in the middle of a fierce storm at sea. You will feel how the ship rocks and moves with the waves and the wind. In the distance, a threatening funnel cloud moves towards you, surrounded by awesome but dangerous lightnings.";
fDesc[12] = "Christmas tree in the middle of a room. It shows a close-up view of its branches. Every branch is beautifully decorated with stars, angels, bells, and more.";
fDesc[13] = "forest. Everything around you is covered with different shades of green. Rocks with moss, trees with leaves and hanging vanes, and more. Then, in front of you, you find a beautiful cascade, flowing through the rocks and vegetation.";
fDesc[14] = "the game takes place in the Middle Age. Your goal is to build and maintain a castle, making sure that your citizens are happy and ensuring that your enemies do not exceed the walls of your building.";
fDesc[15] = "swirls on the surface, accompanied by a sunset sky and lightning in the horizon. The graphics are very realistic. You can almost feel the wind on your face. All the atmospheric effects are so well designed that you will really feel in the middle of the storm.";
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 = '...';
}
}