var fDesc=new Array();
fDesc[0] = "Fallout Tactics: Enclave is a mod which revamps the game using additional content.
Features:
- Tons of new weapons, we got mortars, anti-tank missiles, Enclave sniper rifle, new Gauss mini machine gun, new laser mini gun, etc-
- New vehicles like jet motor, Buick sports car, battle tanks, howitzers, personnel carriers (APCs), aircraft, air strike support, jet bomber, etc-
- 10 mission maps in the first chapter, we can upgrade the base, lead more than 6 soldiers, take war with NCR, BOS, Cybro mutants (AIM),gunners of SHI Mr- Green ?
- Kill more things: doors, walls, trees, sandbags…-
- More armors";
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 = '';
}
}