var fDesc=new Array();
fDesc[0] = "EsbDecimals is a free subset of the forthcoming ESBPCS for .NET - it includes Microsoft .NET Framework Assembly (v2.0, v3.0, v3.5 and v4.0 included) that have classes that supply Constants and Mathematical Routines for the Decimal Type supplied by the Framework.
- Full C# source is included as well as a Documentation.
- Demos for C#, VB.NET and Embarcadero Delphi Prism included.";
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 = '';
}
}