var fDesc=new Array();
fDesc[0] = "This new software release provides control functions for the following control valves if equipped with an integrated controller: Series 61.2, 61.5, 64.2, 65.0, 65.1, 65.2 and series 95.1 & 95.2 as 61.2
Using this software, basic functions like “setup of controller”, “open valve”, “close valve”, “learn”, “up- download of learned data” can be executed, and many convenient functions like “monitoring pressure/position”, “analysis of pressure control performance”, “communication monitor”, etc. are available.";
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 = '';
}
}