var fDesc=new Array();
fDesc[0] = "CPC is the ASC's leading automation product. CPC has been controlling composite, materials, heat-treat, and other processes in production, M&P, and research applications for over 20 years. Hundreds of companies, large and small, are using CPC every day to cure, bond, and process their parts.
Features:
- World's leading software for control of composite processes in autoclaves, ovens, and presses.
- Controlling over 1500 pieces of equipment worldwide
- Flexible, configurable, and powerful
- Affordable multi-equipment capability
- Client/Server architecture and network aware
- Improve part quality and cycle times
- Automatic quality inspection";
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 = '';
}
}