var fDesc=new Array();
fDesc[0] = "Norsonic NorReview is an app for presenting and post processing environmental noise data from Norsonic instruments. It can quickly generate a single report or make advanced evaluations and complex project reports.
Main features:
- Flexible and versatile user-interface.
- Evaluation of industrial noise.
- Evaluation of rail and road traffic noise.
- Evaluation of residential noise.
- Evaluation of multiple measurement files simultaneously.";
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 = '';
}
}