var fDesc=new Array();
fDesc[0] = "WIPL-D Pro CAD is the tool that brings solid modeling into WIPL-D, allowing fast modeling and manipulation for wide range of EM applications, all the while relying on the proven WIPL-D’s powerful kernel. With import of various CAD formats available and fully automated mesh, WIPL-D Pro CAD represents a full, powerful package for high-complexity modeling of EM problems.";
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 = '';
}
}