var fDesc=new Array();
fDesc[0] = "With Eurotherm Profibus GSD File Editor you can create custom GSD files for Eurotherm Profibus enabled instrumentation. This 32-bit Windows based program allows drag and drop of instrument parameters from a tabbed list into input and output windows for automatic generation of the GSD file. A graphical pick column enables quick selection of the supported instruments.";
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 = '';
}
}