var fDesc=new Array();
fDesc[0] = "With NetAdvantage for ASP.NET, you can build intuitive, full-featured business applications for any web browser. It delivers a powerful set of high performance UX controls and components.
Main Features:
- Create both HTML and CSS that is clean, minimal and simple.
- With modular JavaScript included, cut out performance-inhibiting additions and load only the things you need.
- Give your user experience a real boost with the included client-side filtering, paging & sorting.
- Remove any unnecessary source code between your browser and server with minimization capabilities for JavaScript, JSON data, Pages, and more.
- Keep your code strong and free of memory leaks, all while using minimal amounts of memory.";
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 = '';
}
}