var fDesc=new Array();
fDesc[0] = "Outlines the new features in each product level of Mastercam X6. Includes explanatory videos that let you explore the new features.
# In-process stock model creation and use
# More powerful dynamic milling
# Mastercam Machine Simulation
# Highly efficient "OptiRough" rest roughing
# Specialized multi-blade part programming
# Variable roughing for ceramic inserts
# Improved cutoff/pickoff operations
# Wirepath editor improvements
# Level Manager improvements";
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 = '';
}
}