var fDesc=new Array();
fDesc[0] = "NCyclo Turn teaches CNC turning technology in a highly effective manner through videos, animations, pictures and text. NCyclo Turn is aimed at imparting a foundational competence in turning. It can be used by the student for self-learning, or by a teacher in a classroom.
- In Engineering institutes
- In Trade schools
- In in-house training centers of industries
- By owners of machining job shops planning on buying CNC machines
- By machine shop managers and engineers aiming at improving their machines' productivity
Features and benefits
Covers the complete range of topics in CNC machining:
- Machine construction
- Machining operations
- Cutting tools
- Tool holding
- Cutting parameters
- Work holding
- Programming concepts
- CAD/CAM
Material is from actual machines, tools and machining situations in industry.";
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 = '';
}
}