var fDesc=new Array();
fDesc[0] = "EASE Evac provides an intuitive tool for designing acoustic mass notification concepts in a room, hall or building complex. The 3D simulation software calculates the distribution of direct sound levels as well as total sound levels, the signal-to-noise ratio (SNR) and speech intelligibility (STI, ALCons, CIS).
Main features:
- Intuitive room entry in just minutes.
- Precise prediction of SPL and STI.
- Loudspeaker data for all leading brands.";
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 = '';
}
}