var fDesc=new Array();
fDesc[0] = "EssentialFTIR is a complete program for handling Fourier Transform Infrared data. This is a search program for FDM FTIR Reference Spectra Databases, it is easy to use, and it makes complex data manipulations simple. The powerful batch-processing option automates repetitive tasks.
It reads and writes data in industry-standard file formats and generates automatic reports in industry-standard formats.";
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 = '';
}
}