var fDesc=new Array();
fDesc[0] = "Reload for the Bloodiest Battle Yet. Two years following the unexplained disaster on Mars, the UAC returns to the abandoned facilities to investigate a mysterious beacon buried deep in the ruins of the ancient civilization.
- Battle six new demons including the hunters
- Fight in all new 8-player capture the flag arenas
- Wield new weapons including the double barreled shotgun
- Possess demonic powers to use against the enemy";
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 = '';
}
}