var fDesc=new Array(); fDesc[0] = ".net SmokeTest is a Windows application that presents an interactive interface into any .net Assembly allowing you to "smoketest" an API via reflection. Construct an instance of a Type, call a method and set or get a property or field of any class then view or "drill-down" into the resulting object instance without ever writing a single line code. Create objects from a Type hierarchy as arguments or choose instances from your object pool. An indispensible tool for anyone involved in developing, testing and managing software products for Windows."; 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 = ''; } }