var fDesc=new Array();
fDesc[0] = "Addit! Pro For Combat Flight Simulator 2 is a full-featured addon manager for Microsoft Combat Flight Simulator 2.
Main features:
- Easily install, manage and remove aircraft, campaigns, missions, panels, scenery, sounds, textures and more.
- Archive addons you are not using.
- Modify aircraft, panels and sounds.
- Automatically update Combat Flight Simulator's scenery library.";
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 = '';
}
}