var fDesc=new Array();
fDesc[0] = "AccuMark lets you accelerate your workflow:
- Improved marker order entry improves efficiency
- Improved Batch processing for process automation
- Save and share PDS work sessions for better collaboration
- Click n’ Go eliminates the need for right button OK in PDS for maximum speed
- Work with shaped darts in complex patterns
- Autosave in PDS protects against unexpected interruptions
- Integrates with YuniquePLM";
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 = '';
}
}