var fDesc=new Array();
fDesc[0] = "While still in beta, the addon contains some impressive content. Of course, more content will come in the future, but for now, the following is including in this beta:
- 3 Factions, US Army, US Marine Corps and North Vietnamese Army
- 4 Maps, Battle of Ia Drang, Dien Duong, Barracuda and Tad Sae
- 20 new vehicles, including the A1H Plane, UH-1C Gunship and PBR Patrol Boat
- 14 new weapons, including the M20 Super-Bazooka, fully-automatic M14 and M79 grenade launcher
- Complex tunnel systems
- Fully functioning airplane dropped napalm
- And many more features!";
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 = '';
}
}