var fDesc=new Array();
fDesc[0] = "GoodWay is the best flight-planning tool for X-plane available.
The main features that make it the best are:
- GoodWay exists for both Macintosh and Windows operating system.
- GoodWay integrates seamlessly and totally with X-plane :
o It uses THE X-Plane databases: X-Plane and GoodWay worlds are exactly the same and both derived from real-world data.";
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 = '';
}
}