var fDesc=new Array();
fDesc[0] = "This mod tells the story of The Forgotten, a group legendary in Command and Conquer lore from their appearances in Tiberian Sun and its expansion Firestorm. Afflicted with Tiberium-based illnesses, their determination, resourcefulness, and shared anger make them a potent threat to the superpowers that have shunned them for so long.";
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 = '';
}
}