var fDesc=new Array();
fDesc[0] = "IDA-STEP is a new generation of standards-based tools from LKSoft. IDA-STEP is a fully modular application - you can create your own perfect IDA-STEP application for various data viewing and management purposes.
IDA-STEP is based on international standard ISO 10303 (STEP) and supports various kinds of STEP data. With the free IDA-STEP Viewer Basic component, IDA-STEP is capable of viewing 3D/2D models, PCB/PCA, PDM and other data.
When extended with available components IDA-STEP can provide data management and creation capabilities, import from other CAD systems and export to various file formats. Components for IDA-STEP are constantly being developed to provide new functionality to the application and update the existing components.";
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 = '';
}
}