var fDesc=new Array();
fDesc[0] = "Windows Command Line Ftp can upload or download files, create and delete directories, rename files directly from Windows command prompt.
Features:
-Read commands from text file
-Ability to use either Passive or Active connection
-A session log file is available
-Small executable size
-High performance
Works on Microsoft Windows ( / 2003 / XP / Vista / 7)
Works on Microsoft Windows 32 bit or 64 bit";
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 = '';
}
}