var fDesc=new Array();
fDesc[0] = "Features:
-Support for ASCOM compliant telescopes. Allows you to slew to objects from DSLR Focus, create customised imaging list within DSLR Focus and then Goto those images
-Ability to customise an imaging catalogue for easy goto of just the objects you plan imaging
-New Capture Window with Dedicated Capture Mode for USB cables only
-Ability to remember customised defaults camera settings for focus mode and capture modes
-Ability to save exposure sequence files under any name to reuse and share with other imagers
-Graph displaying these values vs time
-Night vision friendly background option.";
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 = '';
}
}