var fDesc=new Array();
fDesc[0] = "Is a universal software for measurement, visualisation and documentation of signals online. The software can communicate with bus systems, OPC-servers and with instruments equipped with a serial interface. All the activities of PC measurement technology are developed and shown on a user-friendly graphical screen. The main areas of use for the system are:
● Laboratories for process technologies,
● Test stands and systems for measuring
instrument properties,
● Monitoring for purposes of environmental
protection,
● Stationary monitoring for quality control purposes
in the food and pharmaceutical industries.";
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 = '';
}
}