var fDesc=new Array();
fDesc[0] = "Panel Builder is an add-on Instrument Package that allows the creation of custom Instrument Panels to interface with various flight simulators. The program has been designed to work with the following simulators:
- MS Flight Simulator X - Simconnect Interface
- MS Flight Simulator 2004 (2002) - FSUIPC Interface
- X-Plane 9 and 10 - using plugins
- DCS World - P-51D Mustang - lua script
- Condor - UDP Interface provided by Condor";
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 = '';
}
}