var fDesc=new Array();
fDesc[0] = "DBWorks R11 assures the greatest level of SolidWorks
integration. DBWorks leverages all program functionality,
including SolidWorks complex document dependencies.
With a full and complete integration into both the Task-Pane and Feature-Manager of SolidWorks, DBWorks establishes a uniquely powerful PDM/PLM environment while maintaining SolidWorks ease of use. Our superior integration with SolidWorks eliminates repetitive tasks with ease.";
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 = '';
}
}