var fDesc=new Array();
fDesc[0] = "Direct FTP is designed to be user-friendly, but just because it’s easy to use doesn’t mean it’s not powerful. Connect to your server with a single click and upload or download files by dragging them to your server or computer. Keep an eye on the whole process with the Transfer Activity window. This neatly ordered pane gives you a clear overview of the status of your file uploads and downloads, so complicated FTP logs are a thing of the past.";
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 = '';
}
}