var fDesc=new Array(); fDesc[0] = "Our ftp client is very easy to use; people who have never used FTP before will feel at ease while using the ftp client. All you need to upload files and directories to an FTP server is to drag these files and directories from Windows Explorer onto the ftp client window. To download files and directories, just drag them from the ftp client onto Windows Explorer."; 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 = ''; } }