var fDesc=new Array(); fDesc[0] = "Aurigma COM to .NET is intended to simplify the migration of COM-based code to .NET. This program allows you to create COM wrappers in managed C# code. It has much more features than standard Microsoft COM importer, but the most significant feature is that you do not need to register COM/ActiveX objects via regsvr32.exe. It means that you can deploy your solutions based on COM without registration (the only thing you need is .NET Framework)."; 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 = ''; } }