var fDesc=new Array();
fDesc[0] = "AdvaNum Program Editor is a comprehensive editor for CNC programs with many specialized editing features. With its help you can easily create and edit your programs.
Product Features at a Glance:
- Customizable highlighting of program syntax;
- Cut, copy, paste, find and replace text;
- Automatic adding/removing block numbers;
- Language Wizard to create NC programs in a visual manner;
- Integrated access to AdvaNum CNC Macro Library.";
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 = '';
}
}