var fDesc=new Array(); fDesc[0] = "EDDiscovery is a tool that allows you to track your Elite Dangerous travels, combat, trading, rank, etc. The program gives you a 3D map and 2D maps of the galaxy, showing travel history and data from EDSM and EDDB to aid your journey through the Elite Dangerous galaxy. It also has Menu Options for some quick access functions and to run housekeeping functions which seldom need executing."; 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 = ''; } }