var fDesc=new Array();
fDesc[0] = "CNC Syntax Editor is a popular tool for writing, editing, and studying CNC programs with G codes. It has a comfortable and intuitive interface both for beginners and advanced programmers.
Main Features:
- CNC intelligent editing with undo and redo.
- File compare.
- The code repository.
- Upload files to a machine.
- Lines numbering and renumbering.
- Add and remove spaces.
- Exchange axes.
- Backplot.";
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 = '';
}
}