var fDesc=new Array();
fDesc[0] = "Advanced Aircraft Analysis (AAA) is the industry standard aircraft design, stability, and control analysis software. AAA is installed in over 55 countries and is used by major aeronautical engineering universities, aircraft manufacturers, and military organizations worldwide.
Advanced Aircraft Analysis provides a powerful framework to support the iterative and non-unique process of aircraft preliminary design. The AAA program allows students and preliminary design engineers to take an aircraft configuration from early weight sizing through open loop and closed loop dynamic stability and sensitivity analysis, while working within regulatory and cost constraints.";
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 = '';
}
}