var fDesc=new Array();
fDesc[0] = "The Festo Configuration Tool (or briefly FCT) is the software platform for configuring and commissioning various components from Festo.
The FCT consists of the following components:
- a framework as program start and entry point with uniform project and data management for all supported types of components.
- a PlugIn for the special requirements of a component type with the necessary descriptions and dialogs. The PlugIns are managed and started by the framework.";
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 = '';
}
}