var fDesc=new Array(); fDesc[0] = "TWRTrainer is a traffic generator for use with the VATSIM sweatbox training environment. It is intended to be used to generate traffic local to a single airport for the purposes of training controllers for the Tower, Ground and Clearance Delivery positions. Aircraft can be commanded to taxi along specific routes, hold short, position and hold, take off, fly patterns, perform touch and goes, stop and goes, low approaches, depart the area, fly inbound for landing, etc. Aircraft can be added with commands or by loading pre-made scenario files."; 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 = ''; } }