var fDesc=new Array(); fDesc[0] = "Win-CNC allows you to edit CNC programs that are unique to the Cincom E/L/M/B Series machines with Mitsubishi Meldas and Fanuc controls. There are three program editors on the screen at one time, lines $1-$3, that enable you to create a CNC program faster and easier than at the CNC. You can copy/move data, or a whole program between $1-$3 with simple key presses. You can also use Windows key strokes for all of the editing functions."; 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 = ''; } }