var fDesc=new Array(); fDesc[0] = "SkyTools is a suite of software tools designed specifically for astronomical observing. The SkyTools Starter Edition is developed for beginning backyard observers using binoculars and small telescopes (apertures up to 4.5-inches or 120 mm). This program allows you to select objects that are appropriate for your telescope or binoculars on a given night, and it helps you find them in the sky."; 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 = ''; } }