var fDesc=new Array(); fDesc[0] = "IBIS Development Studio (IBISDS) is capable of viewing, editing and verifying IBIS models. You can view and edit the IBIS model in a graphical or in a text mode, just what you need for your task. The model verification is done using the golden parser (IBIS version 5.0) and can be called directly from the IBISDS user interface.

The key features in the current release are: model library, models can be easily loaded, edited, verified and saved to a central place. Template library, when you create new models from scratch each time, simply create a template for the model and store this in the template library. Using the model creation wizard it is easy to re-use the templates and quickly build new models."; 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 = ''; } }