var fDesc=new Array();
fDesc[0] = "WT-NMP is a preconfigured, lightweight, fast and stable server stack for developing PHP MySQL applications on the Webserver Nginx. The program includes features such as:
- Command line tools: MySQL client, PHP console, node console, composer
- Easy project Upload, Sync and Browse
- For easy access, all configuration files are stored in one place
- Optional MySQL database daily backups.";
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 = '';
}
}