var fDesc=new Array();
fDesc[0] = "SonoBat software provides a comprehensive tool for analyzing and comparing high-resolution full-spectrum Sonograms of Bat echolocation calls recorded from time-expansion bat detectors. With its intuitive and direct interface, SonoBat makes it easy to record, process, display, and analyze calls with great sophistication.
SonoBat can append library reference calls to a call sequence or individual call and display them on the same sonogram at identical time and frequency scales– no opening of other call files in separate windows and manipulating them to make a comparison. SonoBat does that for you automatically with point and click simplicity.
SonoBat can also process calls into very high-resolution standard view sonograms to display nuances of call morphology and enable on-screen analysis of call data.";
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 = '';
}
}