var fDesc=new Array(); fDesc[0] = "DocWiz allows you to add JavaDoc comments to your source code easily. You can then open a Java source file by choosing File and Open from the menu. DocWiz will then provide a list of all the fields, methods and classes defined in that file. Click on any of these code elements to display a fill-in form for information about this code."; 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 = ''; } }