var fDesc=new Array(); fDesc[0] = "FlyInside FSX allows you to use virtual reality goggles with Microsoft Flight Simulator X. You'll feel as if you're really flying an airplane from the comfort of your desk. It features gaze-tracking, which simplifies the process of using controls; you do not need to take your hand off of your joystick to navigate dialogs, interact with ATC, change settings, or plan flights."; 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 = ''; } }