var fDesc=new Array();
fDesc[1] = "flash based massively multiplayer online role-playing game (MMORPG). Its concept is mainly that of a tactical game featuring wild humor but with a unique style if we compare it with other MMORPGs.";
fDesc[2] = "storyline, which makes it really attractive. It is a strategy game which storyline develops in real-time mode. Players have to choose among twelve different civilizations from the Middle Ages , to make them rise and advance towards the conquest of the whole world.";
fDesc[3] = "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[4] = "land of Iris. The mortals fight for the power and conquest of the land where the ambitions make the players change their alliances all the time with the consequent betrayals. Every decision is important.";
fDesc[5] = "changes is the ability to turn into a werewolf during game-play. The game is fun itself, but it is plagued by a lot of technical issues.";
fDesc[6] = "universe of Star Wars movies. The game tells the story from the times when the Galactic Republic falls to the destruction of the Death Star (Episode III and Episode IV).";
fDesc[8] = "for the New World has never been more challenging. This expansion pack is the answer for all of those that were calling for more of the New World.";
fDesc[9] = "all fans of the genre. The game objective consists in invading and capturing territories, and if possible taking over the world. Conquest is challenging and very engaging; it requires a well planned strategy to defeat enemies and the ability to make quick tactical decisions.";
fDesc[10] = "developers of the Cossacks series. It is published by CDV. The game action is developed between the fifteenth and nineteenth centuries in the Americas.";
fDesc[11] = "Divided Nation is the second independent (or standalone) expansion of the American Conquest saga. The main theme of this game is the American Civil War and the independence of Texas from Mexico.";
fDesc[12] = "you may know you will command a Roman Legion, and you will have to guide them to the victory. All your missions have a common goal: to expand the Roman influence and conquest the enemies.";
fDesc[14] = "there are cash prices for objectives accomplished in the game, making it very attractive to everyone interested in strategy games.";
fDesc[15] = "interface I/O or Windows API; Serial port for communication and the type of data; addresses and the program code for the device; select different devices; read, erase verify, and send program code. The view can be assembler or hexadecimal (assembler view is only supported for 14/12 bit PIC).";
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 = '...';
}
}