var fDesc=new Array();
fDesc[0] = "The new FITS Liberator incorporates a faster and more streamlined workflow. The CPU-intensive calculations have been optimised, thanks to significantly improved memory management, and this allows for time savings of up to 35%.
For large images the savings in efficiency are even more pronounced, also thanks to a delayed application of stretch functions.
FITS Liberator saves TIFF files that open in any image processing software.";
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 = '';
}
}