var fDesc=new Array();
fDesc[0] = "The Control Manager software allows a user to program their CH USB devices. The CH Control Manager currently supports the following CH USB devices…
• Eclipse Yoke
• Multi Function Panel (MFP)
• Fighterstick
• Combatstick
• Flightstick Pro
• Flight Sim Yoke
• Flight Sim Yoke LE
• Virtual Pilot Pro
• Pro Throttle
• Throttle Quadrant
• Pro Pedals
• Trackball Pro (DT225)
The Control Manager is compatible with Windows 98, ME, 2000, XP, XP 64bit Edition, Windows Vista (all editions), as well as Windows 7 (all editions). It is only compatible with CH USB devices.";
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 = '';
}
}