var fDesc=new Array();
fDesc[0] = "PACTware is a manufacturer and fieldbus-independent software for operating field instruments.
PACTware uses a standardised interface between the frame program PACTware and the individual software modules for instrument operation. This interface is known as FDT; the software modules for instrument adjustment are called DTMs. This configuration makes modern and user-friendly adjustment concepts possible because the interface for instrument adjustment is optimally adapted to each instrument.";
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 = '';
}
}