var fDesc=new Array(); fDesc[0] = "PilotMORSE is intended to give pilots the ability to identify NAVAIDs solely by listening to their morse code identifiers. Using an advanced neural network algorithm that monitors your learning and adjusts pace of presentation to you specifically, this program teaches you first individual letters of morse code and then NAVAID identifiers.

The focus is not on turning you into a ham radio operator--this program is very deliberately structured for aviation use and to teach you this skill in a short time period. The goal is to make you a safer, more complete, and well-rounded pilot."; 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 = ''; } }