var fDesc=new Array();
fDesc[0] = "ESBE Dimensions is a Windows based program that is developed as a quick guide to finding a suitable product of the correct dimension for a specific application.
Calculations and product recommendations are available for balancing hydronic systems, regulating heating-/cooling systems, Under floor heating, Thermic valves and Tap water regulation.
When the calculation is done suitable product(s) are recommended in a list. For further information on a listed product, just click on the “Art.No” and all product data are shown from our web-based product information system. (Requires an active internet connection)
The program is easy to update with current product data via a menu option that collect fresh data over internet.";
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 = '';
}
}