var fDesc=new Array();
fDesc[0] = "EO.Total is a set of .Net controls for web design and PDF programming. It includes EO.Web, EO.Pdf, EO.Wpf and EO.WebBrowser.
EO.Web Controls is a collection of ASP.NET server controls that covers a wide variety of functionalities and UI elements.
EO.Pdf for .NET is a set of .NET components for you to easily create, read or modify PDF file in your Microsoft.NET application (both ASP.NET Web application and traditional Windows application).
EO.Wpf for .NET is a set of WPF controls. It incluces a large set of commonly used controls (such as Buttons, ProgressBar, TreeView, Menu, Calendar, etc), an intuitive docking view solution and a powerful gauge framework.
EO.WebBrowser is a web browser engine based on Google's Chrome project but with native .NET programming interface.";
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 = '';
}
}