var fDesc=new Array();
fDesc[0] = "WatchFTP is a Windows program that monitors an FTP site for new and changed files and automatically downloads these to a local Windows folder. It can also run a batch script, or send email notification of the download.
It supports Secure FTP (FTPS & SFTP) (protect your password and data) and it will send you email notification listing the downloaded files.";
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 = '';
}
}