var fDesc=new Array(); fDesc[0] = "EveHQ is a third party application designed for use with Eve-Online. As well as containing a substantial core list of features such as pilot monitoring, skill queue planning and in-game notifications, it utilises a plug-in system which can extend the application in a myriad of ways. Current plug-ins available include ship fitting, mapping and routing, full item database, wormhole and w-space information, POS management and killmail viewing. EveHQ is an open-source application (under GPL v3) and the code for the Core and Plug-ins is available for download. This will enable you to write your own features and plug-ins specifically for use with EveHQ, or contribute to the main development project."; 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 = ''; } }