var fDesc=new Array();
fDesc[0] = "Cross-platform PHP5 component libraries / extensions for development on Windows, Unix, Linux, Mac, etc.
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)
- Seamless integration with popular development environments including Eclipse.
- Demo applications and comprehensive HTML documentation.
- All PHP libraries include royalty-free distribution.";
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 = '';
}
}