var fDesc=new Array();
fDesc[0] = "CamGen is easy to use as the most commonly used CAM shapes are pre-built, ready for you to enter the dimensions. Alternatively you can build shapes from tables of points and flexibly specify the shape in-between using curves and straight sections.
CamGen is so simple to use, you can import a set of points from Excel and build a smooth motion profile in a few minutes.";
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 = '';
}
}