var fDesc=new Array();
fDesc[0] = "CNC Transfer is easy to use software for Windows that enables the download of programs from a CNC to a PC using a serial cable. The programs are stored in an organised structure on the hard drive of the PC and can be uploaded back to the CNC as needed.
Main features:
- Multiple communication set-ups allow transfer to and from different CNC.
- Machine set-up information can be stored for each program.
- Editing of programs on the PC.
- Find and Replace facilities.";
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 = '';
}
}