var fDesc=new Array();
fDesc[0] = "ImagXpress Version lets you quickly add the world's most trusted imaging functions to your Windows application.
Main features:
- Sample code is included for: VB.NET and C#;
- Creates .NET AnyCPU applications for use in 64-bit and 32-bit environments;
- Deploys within .NET as a managed control and is fully compliant with .NET Framework 2.0 and above;
- Streaming image support for progressive image viewing online;
- Can be used in multi-threaded applications (more).";
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 = '';
}
}