var fDesc=new Array();
fDesc[0] = "Use your FTP storage as FTP Basket on your computer. Save your files in the FTPBasket by Dragging&Dropping them. FtpBasket Software is an easy-to-use program lets you transfer files or even entire folders quickly and efficiently. Its useful to to backup your critical data to remote FTP servers.
Features:
-Works with Windows 2000/XP/Vista.
-Upload to a website using file transfer protocol (FTP)
-Upload by Drag&Drop directly from Win Explorer
-Manually download selected files
-Manually connect and disconnect to site
-Bookmarks menu to allow you to quickly connect to remote sites";
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 = '';
}
}