var fDesc=new Array();
fDesc[0] = "Essential FTIR is a program for the presentation of infrared data. Infrared data is represented as two dimensional arrays with Frequency and Absorbance as X and Y vectors. Mid-IR, Near-IR, Raman, UV, VIS, and EELS data can be presented in this manner.
Essential FTIR comes with a large number of tools and options to manipulate and analyze these vectors.";
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 = '';
}
}