var fDesc=new Array();
fDesc[0] = "AbsoluteFTP is an FTP (File Transfer Protocol) Server application for Windows based systems.
AbsoluteFTP is a WinSock application for Windows, for working as an FTP transfer system between user PC and FTP sites.
The first time the program runs, it asks for the desired location to store the Sessions database. This is accomplished by the user, or the application uses one by default, associated to the folder where the program itself has been installed.
The application allows to download files and browse from FTP sites, over Internet and intranets.
The drag and drop capability included in the application makes the transfers processes between local and remote sites easier. The user can command simultaneous connections and multiple transfers, using the included firewall and DOS FTP servers support. The application enables server to server (site to site) transfers. Users can choose data transfers based on FTP or the SSH encrypted connections. The application also includes a 'keep alive' function to avoid being disconnected because of low activity. Time-outs and number of retries on connections can be adjusted on the general settings of the program.
Automatic resumes of interrupted file transfers is another feature offered by this application. Also, transfers can be controlled by means of the command line feature, as well of file renaming, deletion, etc. so it can be inserted into user made programs for transferring files securely.
The application also includes a New Site Wizard to make the site creation tasks easier. Another feature is the site synchronization, so only the files that have been modified are transferred.";
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 = '';
}
}