var fDesc=new Array();
fDesc[0] = "Device Tool for service and commissioning. The Festo Field Device Tool includes various services for all Ethernet-based Festo field devices. It supports, among other features, the update of firmware files to selected devices from Festo. Features:
• Scanning function for Ethernet-based products
• Automatic update function for application and firmware files
• Integrated file repository for firmware files
• Single and parallel firmware download for selected devices
• Creation of firmware download report
• Back-up and restore functionality";
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 = '';
}
}