var fDesc=new Array(); fDesc[0] = "SuperPutty is a Windows GUI application that allows the PuTTY SSH Client to be opened in Tabs.

Main features:
- The docking user interface allows personalized workspace and managing multiple PuTTY sessions easy.
- Export/Import session configuration.
- Upload files securely using the .scp or .sftp protocols.
- Layouts allows for customizing session views."; 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 = ''; } }