var fDesc=new Array();
fDesc[0] = "It’s 1942, and deep in the South Pacific your platoon of crack troops lands on a tropical island, but can you defeat enemy forces and hold your ground to fight another day?
You’ll need to act quickly in this action-packed, WW2-themed battle strategy game – Control air, sea, and land forces, build your garrison, battle against friends and create powerful allegiances!";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}