var fDesc=new Array();
fDesc[0] = "IO-Link USB-Master, along with Sensor Studio can be used to operate, configure, and diagnose sensors and actuators (10-Link devices) with an 10-Link interface. IO-Link USB-Master software package installs all the required Windows drivers for MD12-US2-IL and other IO-Link devices.
Every 10-Link device is described in its associated IODD file (10-Link Device Description. After reading this IODD file into the software, the 10-Link device connected to the 10-Link USB-Master can be conveniently operated, configured and checked in several languages. If no device is connected, it can still be configured offline.";
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 = '';
}
}