var fDesc=new Array();
fDesc[0] = "CAMback NFS Server is required for connecting the following CNC controls with a Windows network:
- Heidenhain iTNC 530
- Heidenhain TNC 426
- Heidenhain TNC 430
- DMG Millplus
- DMG Millplus IT
Machines with these controls are (among others):
- DMG DMC60T (Millplus)
- DMG DMU60T (Millplus)
- DMG DMU 80T (Millplus IT)
- DMG DMC63 (TNC 426)
- DMG DMU70e (TNC 430)";
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 = '';
}
}