var fDesc=new Array();
fDesc[0] = "Dacris NetXP is a component suite for .NET that developers can use to enhance the way their applications interact with the user.
NetXP provides a library of rich user interface controls and components.
With NetXP you get toolbars and panels that dock/undock anywhere on your forms, 3 visual styles: Office 2003, Office XP, and Windows XP and countless other controls and components that should have been included in the .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 = '';
}
}