var fDesc=new Array();
fDesc[0] = ""File Transfers the way they ought to be ¿ Quick, easy and fun!"
QFTP is a unique tool that simplifies the transfer of files to and from host computers using the Internet's file transfer protocol (FTP). Using a graphical interface that is built upon Microsoft's Windows Explorer standard,
QFTP users can quickly, easily and accurately transfer files using simple drag-and-drop or cut-and-paste techniques.";
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 = '';
}
}