var fDesc=new Array();
fDesc[0] = "DxDesigner provides a sophisticated yet scalable design definition environment that integrates with Expedition Enterprise and PADS layout tools across multiple computing platforms.
Features:
- Unifies the front-end design environment by integrating with most major PCB layout tools, saving support and training costs while enabling design sharing.
- Complete environment for capturing design intent.";
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 = '';
}
}