var fDesc=new Array();
fDesc[0] = "Autostar Suite is a digital astronomy application for your Meade telescope.
Main Features:
- Select objects from the planetarium display and have your telescope automatically slew to those objects.
- Control all Autostar functions from your PC.
- Talking Telescope app translates Autostar text to synthesized speech through your PC speaker.
- Remote telescope control over the Internet.
- Point and click the planetarium display to create custom tours of the objects of your choice with your custom text that can be uploaded into the Autostar controller.";
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 = '';
}
}