var fDesc=new Array();
fDesc[0] = "Astrometrica is an interactive tool for scientific grade astrometric data reduction of CCD images, focusing on measurements of the minor bodies of the solar system (asteroids, comets and dwarf planets).
Main features:
- Automatic image calibration (Dark Frame and Flat Field correction).
- Blinking with automatic image alignment.
- Zoom and 'Magnifying Glass' for closeup image inspection.
- Automatic reference star identification.";
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 = '';
}
}