var fDesc=new Array();
fDesc[0] = "Fixed all guns of the planes, including bomb and rockets. Now bomb kills count.
Planes can't be use anymore as kamikazes. If you crash a plane against a tank, the kill goes for the tank.
Fixed planes trucks inventory.
Now tranpsort planes come full of troops that can be deployed anywhere on the map.
British nation have the Hamilcar, a glider that can deploy a Tetrarch anywhere on the battlefield.";
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 = '';
}
}