var fDesc=new Array(); fDesc[0] = "SimDiff is the industry-standard Simulink diff tool. SimDiff compares two Simulink model files for additions, deletions, and changes to blocks, lines, configuration parameters, model properties, subsystems, and annotations. In other words, it computes differences that affect the logic of the model, not just simple layout changes. In addition to the fastest, most accurate Simulink model diff, SimDiff Pro also includes reporting and auditing to support safety-critical model-based development."; 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 = ''; } }