var fDesc=new Array(); fDesc[0] = "SeeYou is flight analysis and planning tool featuring comprehensive statistics, free vector maps, and direct communication with flight recorders. It is an ideal tool for glider pilots and competition organizers. You can load IGC flight files in this program and view them in 2D format. You can also view flights in 3D mode by loading Terrain and Satellite imagery. Flight planning can be done easily from its map interface. Weather integration can be done from TopMeteo and SkySight."; 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 = ''; } }