var fDesc=new Array();
fDesc[0] = "TopSolid 7, The Integrated CAD/CAM/ERP Solution, offers many exciting new capabilities for all your product design, analysis, and manufacturing needs. The following list highlights the Top 10 Reasons to choose TopSolid 7.
Improved performances
- Up to 30% Gain compared to other « old-technology » CAD Softwares
- Loading « On-Demand » of parts / assemblies
- Large assemblies management
- High-speed 2D projection";
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 = '';
}
}