var fDesc=new Array();
fDesc[0] = "Build fully-integrated solutions for retrieving live financial data from banks, credit card, and investment companies. E-Banking Integrator (formerly IBiz OFX Integrator) is a suite of components for Open Financial Exchange (OFX) client integration.
Features:
- 32-bit & 64-bit PHP libraries (windows DLL's).
- PHP Libraries for Unix (Linux, Solaris, FreeBSD, MacOS, etc..).
- Support for PHP 5 (Version 5.2 and 5.3)";
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 = '';
}
}