var fDesc=new Array(); fDesc[0] = "Windows Forms is the original graphical user interface portion of the .NET framework. This program covers everything from syntax-highlighting code editors and advanced menus/toolbars, to docking windows and MDI. Optional language add-ons for SyntaxEditor are available that enhance the SyntaxEditor code-editing experience for end users with features like parsing, syntax error reporting, automated code outlining, and IntelliPrompt."; 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 = ''; } }