var fDesc=new Array(); fDesc[0] = "RhinoCAM is a Computer Aided Machining (CAM)plug-in that runs completely inside of Rhinoceros. This plug-in is a general purpose machining program targeted at the general machinist. RhinoCAM marries the power of Rhino's freeform modeling with VisualMILL's legendary machining capabilities to bring you a product of unrivalled capability for free form surface machining. With the seamless user interface, selection and display integration RhinoCAM acts and feels like you are working with Rhino when creating your cutter paths"; 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 = ''; } }