var fDesc=new Array();
fDesc[0] = "Nation Red is an ultrafast infinite play arena-based shooter providing an exceptional close-quarter battlefield experience. Fight thousands of zombie mutants and their bosses in frantic bloody gameplay.
Battle through 18 quests, earn mission stars and fight in a range of gameplay modes: Free play, Survival and Barricade for unlimited replayability. Access a huge array aof weapons, 50 perks and powerups to customize your fighter.";
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 = '';
}
}