var fDesc=new Array(); fDesc[0] = "NCPlot is an editor and backplotter for 4 axis mill and 2 axis lathe G-Code programs. The program combines editing, formatting and translation tools that are useful for CNC programmers with a backplotter for instant G-Code verification. You can remove block numbers, blank lines, comments or spaces."; 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 = ''; } }