var fDesc=new Array(); fDesc[0] = "Core FTP Server is software for Windows that allows you to exchange files with others via networks and the internet. The FTP protocol (File Transfer Protocol) allows files to be moved across the internet and networks with relative ease, regardless of computer platform (Windows, Unix, Mac, etc). The server program is set up on your computer and allows access by others to your files. You control who accesses what files by setting up user accounts on the FTP server.

Users access your FTP server via an FTP client. FTP clients allow users to access your server to exchange files (more commonly known as uploading and downloading)."; 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 = ''; } }