var fDesc=new Array();
fDesc[0] = "CAMMaster, the premier product for the most demanding jobs. Scripting features to automate your routine jobs, improve accuracy and yields to get the work done faster.
PentaLogix's most complete CAM software designed to meet tomorrow's manufacturing needs. CAMMaster uses scripting, raster and contour based algorithms and increased ease-of-use to deliver the strongest PC-Based CAM system in the industry. We provide you a USB dongle. CAMMaster can be installed on multiple computers but will only run on a computer that has the dongle plugged in.";
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 = '';
}
}