var fDesc=new Array();
fDesc[0] = "The industrial standard.
All measuring instruments are delivered with this well-proven software for the transmission, evaluation and presentation of measurement data. This software has all the necessary basic functions and is compatible to special evaluation environments. The open software architecture allows the rational development of customized applications and solutions.";
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 = '';
}
}