var fDesc=new Array(); fDesc[0] = "NETCheck is a utility that .NET developers can use within their own application to verify if the required version of the .NET framework is installed and allow the user to download it.

Software developers need all types of users to be able to run their products. If you develop a .NET framework program and the user does not have .NET installed, he will receive a Windows error message, which is not the first impression your users should see."; 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 = ''; } }