var fDesc=new Array();
fDesc[0] = "ReadWin 2000 is a PC software for use with modern Endress+Hauser instrumentation with a serial interface.PC-Software under MS-Windows for unit setting up, display and archiving measured values/sequences.
Depending on the type of insrumentation, the software can:
- Easily set up units from the PC
- Display signal sequences
- Electronically archive measurement points
- Export pre-analised values into other programmes (e.g. MS Excel)
- Use modem connections to distant units";
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 = '';
}
}