var fDesc=new Array();
fDesc[0] = "Alpha Project - Close Combat Mappack features maps like: Crossfire, Lost Jungle, Morning Breeze, Pripiyat, Town Strike, Vacant.
Alpha Project is a battlefield 2 modification which goals are to bring back all the features that were left out in the retail game. The gameplay style of the mod is a mixture of arcade and realism.";
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 = '';
}
}