var fDesc=new Array();
fDesc[0] = "CCDSharp is SBIG's package for performing Lucy-Richardson deconvolutions on SBIG format images.
Key features:
- 32 bit program that runs under Windows 95/98/Me/NT/2000/XP
- Supports real-time contrast/brightness adjustment of images using the Contrast pad in the Contrast window.
- Performs Lucy-Richardson deconvolution on images
- Special customizations to the Lucy-Richardson algorithm that minimizes donuts around stars burried in nebulosity and reduces increased graininess in the background areas of the image.
- Has Print and Print Preview using the standard Windows model.";
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 = '';
}
}