var fDesc=new Array();
fDesc[0] = "ProductView Express 9.1 is PTC’s free, downloadable release of visual collaboration software. ProductView Express is built on the same high-performance architecture as ProductView MCAD Professional. ProductView Express 9.1 not only provides import and viewing of Pro/ENGINEER and other ProductView files without requiring authoring software, it also delivers unparalleled visualization capabilities of even the largest assemblies.
It provides you with ultra high performance in a free Visual Collaboration software;
Quickly view Pro/ENGINEER and ProductView datasets without the need for the authoring software; you can navigate large datasets easily through spin, pan and zoom, visualize data in Shaded, Wireframe or with Hidden Lines removed, review markups to collaborate on the design, access Product Manufacturing information.";
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 = '';
}
}