var fDesc=new Array(); fDesc[0] = "101 C# Samples is a free software application that is demonstrating various aspects of the language in areas like: syntax, data access, Windows Forms, Web development and Web services. It also contains information about security, the .NET Framework, file system and file I/O, interop and migration issues, COM , ADO.NET, and many other subjects"; 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 = ''; } }