var fDesc=new Array();
fDesc[0] = "CAEPIPE (“kay-pipe”) is the ultimate tool for design and
analysis pros needing reliable “get it done” software for the everyday demands of a busy workplace.
CAEPIPE is a real workhorse with the industry’s widest import capability, most user-friendly interface and a comprehensive list of technical features. Enjoy a practical work platform unencumbered by a hard-to-use interface, seldom used features or add-ons. Import from AutoCAD Plant 3D, PDMS, PDS/SmartPlant, Autoplant and others.";
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 = '';
}
}