var fDesc=new Array(); fDesc[0] = "NDoc3 is a code documentation generator for .NET, it generates class library documentation from .NET assemblies and the XML documentation files generated by the C# or Visual Basic compiler. NDoc3 uses documenters to generate documentation in several different formats, including the MSDN-style HTML Help format (.chm) and the MSDN-online style web pages. Support for the Visual Studio .NET Help format (HTML Help 2) will be added in the next release. Other formats will also be available like the JavaDoc format and others."; 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 = ''; } }