var fDesc=new Array(); fDesc[0] = "AnalogX PHPConfig is a graphical frontend to PHP's php.ini file, where all of the configuration of PHP takes place. The end result is that you can spend more time on your PHP code and less on tweaking their .ini file. It supports all of the standard PHP functionality, and has a special 'Unknown' tab to handle any 3rd party plugins, such as the Zend Optimizer, MSSQL, or whatever. PHPConfig does not have its own data format, but instead loads up the same configuration file that PHP uses, and outputs directly to the same format."; 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 = ''; } }