var fDesc=new Array();
fDesc[0] = "The free CNC Editor
Use cncCoder instead of Windows NotePad or WordPad.
Color and/or bold highlighting can be enabled or disabled instantly showing as much or as little highlighting as you want.
Fully functional - No time or file size limits.
cncCoder is supplied to you at no cost - It's a fully functional CNC text editor identical to the one you'd get if you used easyDnc, our popular DNC software - You can install cncCoder on as many computers as you want. You can share it with colleagues and use it for as long as you want.";
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 = '';
}
}