var fDesc=new Array(); fDesc[0] = "This Delphi 5 OpenTools API plug-in provides support for the creation of DUnit projects and test cases. DUnit itself is a separate product and installation, and must be installed prior to compiling projects created by this plug-in. Enhanced Options dialogue to allow tailoring of test class and test method names and preselected treeview nodes in TestModule and TestClass dialogues."; 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 = ''; } }