var fDesc=new Array();
fDesc[1] = "explains your objective the news that your intelligence received from the other side and data of the tank that you are going to use.";
fDesc[2] = "headquarters. Modern 3D graphics and sound guarantee the ultimate battle-tanking experience. 50+ levels.";
fDesc[3] = "opportunity you will fight in Africa. Plot: Panzer Elite Action returns to the load with an expansion that focuses on African campaign of World War II. Forget the immense forests of central Europe and confront a much warmer scenario.";
fDesc[9] = "are going to travel to the World War II, which was as you may know the most bloody war of the history of mankind. All the missions that you are able to do, are in Europe between 1941 and 1944.";
fDesc[15] = "Panzer is a game where you command a tank and try to take out your enemies. It is 3D arcade/shooter/simulat ion game which supports multiplayer mode. It uses an advanced physics simulation model and is playable over the internet.";
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 = '...';
}
}