var fDesc=new Array(); fDesc[0] = "ForPilots Logbook is a computerized logbook program designed to let you make an electronic version of your aviation logbook. The advantages of an electronic logbook to the average pilot are numerous: a computerized logbook is easy to maintain and update, features advanced statists, charting, graphs, and helpful wizards. You will always know what your flight time is without having to dig out a calculator and add up all those columns by hand. Print out a hardcopy whenever you need to."; 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 = ''; } }