var fDesc=new Array();
fDesc[1] = "Entertainment. In 2001, this game became one of the most popular on-line games through, inter alia, free servers that Blizzard offers, forming the network Battle.net.";
fDesc[2] = "locations. Kung Fu Panda tells the story of Po, a panda bear who loves martial arts but whose physical condition makes it impossible to practice kung fu.";
fDesc[3] = "play, it just includes some ads during the game, but nothing too annoying. It is solid and it has a great theme.";
fDesc[4] = "path of the Open Palm or Closed Fist. The game has customizable controls which also feature support for game-pads as well as keyboard and mouse. It has an increased resolution support along with various new visual effects.";
fDesc[5] = "competition in the multi player modes.";
fDesc[6] = "he tracks down the killers, uncovering conspiracies involving the highest levels of the rabbit kingdom.";
fDesc[7] = "application terminate it in an unusual way when you click on the Enter button to start playing and it can’t be tested further. WOKF runs on Windows platforms.";
fDesc[8] = "give you that crucial dosage of required daily action in your life. Do not let others tell you about it, play it yourself.";
fDesc[9] = "and zoom animations from still images. Creates SWF and AVI output. Time line key frame interface creates pan, zoom, rotate and 3D.";
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 = '...';
}
}