var fDesc=new Array(); fDesc[0] = "SoapBox Core makes it simple to build an extensible .NET application. It makes extensive use of Windows Presentation Foundation (WPF), the Model-View-ViewModel (MVVM) Pattern, and the brand new Managed Extensibility Framework (MEF). The SoapBox Core application framework takes the Model-View-ViewModel pattern one step further, allowing you to capture each feature in its own assembly, and swap them in and out at runtime."; 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 = ''; } }