var fDesc=new Array();
fDesc[0] = "The MLC 9000+ Workshop Configuration Software is used to configure the West MLC 9000+ Temperature Control System. In the MLC 9000+ Workshop Configuration Software you have access over the drivers and loop models.
The MLC 9000+ maximises up-time by offering a true hot-swap facility. A module can be removed, replaced, automatically re-configured and back in service in under 30 seconds. Unlike some systems, with the MLC9000+ there is no need to touch the remaining control modules - allowing them to continue functioning when any of the other modules are removed.";
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 = '';
}
}