var fDesc=new Array();
fDesc[0] = "We bring back a bit of the BFME 1 gameplay style by adding Combo hordes, smaller hordes, leveling buildings... and more! A new, better and more balanced CAH System! Also all of the old Factions are being remade, thus making them more fun to play.
There are quite a few factions in this mod.
Arnor (2 sub factions) & Gondor & Rohan & Elves (2 sub factions!) & Dwarves & Isengard & Mordor & Men of the East (2 sub factions!) & Dol Guldur.";
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 = '';
}
}