var fDesc=new Array(); fDesc[0] = "The program uses Flight Simulator’s communications frequencies to play live streaming ATC transmissions from the web. There are two modes of operation: automatic and manual. In the automatic mode, Flight Simulator must be running and a COM frequency selected that has an ATC stream assigned to it. In the manual mode FSChatter Live can be operated without Flight Simulator. The program also has a range feature that allows you set a distance in miles around a selected airport."; 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 = ''; } }