var fDesc=new Array();
fDesc[0] = "SONarchitect ISO database has more than 300 constructive solutions and continues to expand.
SONarchitect ISO is the most powerful software tool for calculation of sound insulation .
SONarchitect has a multi-catalog interface with a material database.
SONarchitect ISO computes the noise emission maps from any noisy room in your building.";
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 = '';
}
}