var fDesc=new Array(); fDesc[0] = "Web Server that is extremely easy to setup for clients to use similar way than ftp servers, but this is strictly web server, that does allow upload and download files, create and remove directories. All clients will have personal rights and also personal virtual folders. All clients must pass the user&password check to be allowed to see any of the contents, otherwise only login screen will appear to the clients browser."; 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 = ''; } }