var fDesc=new Array();
fDesc[0] = "Fortaleza City Airport Photoreal FSX & P3D is an airport scenery add-on designed to work with the FXS and P3D flight simulators. It comes with the Pinto Martins international airport ( SBFZ / FOR) with its terminal and the city of Fortaleza in Brazil, including the coastal path, autogen downtown and around, traffic road, air traffic, 3D buildings, autogen forests.";
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 = '';
}
}