var fDesc=new Array(); fDesc[0] = "SourceRabbit GCode Sender is a cross-platform CNC control software for every GRBL-compatible CNC machine. It features integrated Touch Probe support to allow easy and trouble-free zero positioning, an easy-to-use tool to find the center of rounded holes, easy change of the work position even in the middle of different CNC operations, and more. It provides a highly optimized and asynchronous (event-driven) UI and USB-to-Serial communication and can be also used on computers with small amount of RAM and CPU."; 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 = ''; } }