var fDesc=new Array(); fDesc[0] = "Flightmap can keep track of your flights, and create high-resolution maps of all the places you've been to. It also lets you attach photos directly to flights, and learn about your flight habits using statistics. This program provides a 3D globe for navigating through your flight paths."; 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 = ''; } }