var fDesc=new Array();
fDesc[0] = "EaziCAM is a 2D and 3D CAD/CAM system.
Using EaziCAM you can programme drilling, profiling, pocketing and contouring operations from CAD data or models. EaziCAM is based on the EaziForm CAD/CAM software used by the automotive industry to rapidly manufacture 3D form-blocks for assembly lines and fixtures.";
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 = '';
}
}