var fDesc=new Array();
fDesc[0] = "Smaart Di is the two-channel version of the FFT-based audio analysis software. The program provides a nimble and quickly adaptable measurement environment with all critical configuration and control parameters accessible from a single intuitive user interface. It features fractional-octave banding, up to 1/48th octave resolution, display of 2 input sources at a time, spectrum-over-time with amplitude represented by color, real-time adjustable dynamic range, phase, magnitude and coherence plots, and more.";
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 = '';
}
}