var fDesc=new Array();
fDesc[0] = "Creo Elements/Direct Modeling (formerly CoCreate Modeling), the world's #1 direct 3D CAD software system, is a complete environment for 3D product design with a broad set of integrated design modules that add extra capabilities to meet your specialized needs.
The direct modeling approach of Creo Elements/Direct Modeling makes creating and modifying 3D designs fast, easy and flexible. Creo Elements/Direct Modeling is packed with an extensive list of features to deliver the speed, flexibility and responsiveness to change that’s demanded by leaders in the high-tech electronics and machinery industries.";
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 = '';
}
}