var fDesc=new Array(); fDesc[0] = "The MPCORB Database Access Component package has the tools for converting the Minor Planet
Center orbital elements catalog into a Microsoft Access database.
The program makes the elements available to ASCOM scripts and client-programs and the access to Microsoft in not needed.
The MakeDB.wsf tool builds the database from scratch and the component provides virtually instantaneous scriptable access to the database.
A demo tool, GetElements.wsf can be used to test
and browse the database."; 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 = ''; } }