var fDesc=new Array();
fDesc[0] = "PTC Creo Elements/Direct (formerly CoCreate) lets you make use of PTC’s 3D design tools. The Part Library, an add-on module integrated with PTC Creo Elements/Direct Modeling, features a library of over 173,000 ANSI, DIN, ISO and JIS components, such as bolts, washers, nuts and miscellaneous hardware.
The download link given here provides you a demo version of PTC Creo Elements/Direct.";
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 = '';
}
}