var fDesc=new Array();
fDesc[0] = "Craterlet is a capture application for the Orion StarShoot Solar System imager and for other cameras compatible with DirectX (DirectShow) and WDM.
It provides streaming to AVI and still capture.
-Simple, clean interface.
-Streams to AVI format at ~30 FPS, ready for processing in Registax.
-Allows you to quickly cycle among your camera's modes
-Allows you to specify frame rate and capture duration
-Works with any camera having DirectX WDM drivers.
-Able to capture individual still frames in BMP format.";
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 = '';
}
}