var fDesc=new Array();
fDesc[0] = "Gene6 FTP Server is an FTP server program that enables easy transfers to and from user PC and FTP servers (up the web).
The connections are protected by user password, NT authentication, and one time password S/Key, MD5. The program allows to re-use Windows accounts that are already created. Accesses are based on IP addresses.
By setting the user account server level, application enables to decide the users that can connect to the server. The application allows to create unlimited number of accounts. In these accounts, the application can insert expiration dates, so they'll be no longer available after it, to eliminate accesses to not usable and old accounts.
All the settings that user adjusts are immediately applied to the server, without the need of restarting the whole server. Users can change the day and time stamp on the files, and schedule the bandwith by the day or the week. User can also restrict the type of files to transfer or to be hosted.
Whenever a file is uploaded or downloaded, the application can reportthe changes by sending an email to alert the user.
The application offers the capability or resuming any interrupted transfer.";
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 = '';
}
}