var fDesc=new Array();
fDesc[0] = "ACE of SPADES is the best bits of Minecraft crossed with the fast-paced shooter gameplay of Team Fortress.
-Build anything – defensive positions to fortresses
-Destroy enemy structures, dropping opponents to their death
-Use your spade to dig through terrain – make trenches or tunnels
-Massive maps with lakes, rivers and tunnels
-Realistic rifle, shotgun and SMG including ironsights and recoil
-Dynamic lighting system based on ambient occlusion
-Up to 32 players battling simultaneously
-CTF or Territory Control game modes";
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 = '';
}
}