var fDesc=new Array();
fDesc[0] = "Main features:
- Drinking water pipeline network calculation according to DIN 1988-3, DVGW W 551 a. W 553 incl. Simulation for circulation and KHS
- Wastewater pipeline network calculation acc DIN-EN 12056 a. DIN 1986-100
- Heating: Heating load acc DIN-EN 12831, heating surface design with BDH
- Cooling load calculation acc VDI 2078 with inclusion of the EN 1264 Draft
- TRGI: Gas pipeline calculation";
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 = '';
}
}