var fDesc=new Array(); fDesc[0] = "This program allows the calculation of layer structures (Walls, ceilings), the following parameters can be easily calculated:
U-Value
Humidity distribution
Temperature distribution
Energy consumption
The calculations are based on the following standards EN ISO 6946, prEN ISO 13788. A few factors are adaptable, this allows to make the calculations with other standard-environments."; 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 = ''; } }