var fDesc=new Array();
fDesc[0] = "SSH-enabled Notepad application. Allows you to edit files on any remote server on which you have an SSH account. SSH Editor is a FREEWARE, full-featured, yet easy-to-use, editor for webdevelopers and webmasters.
Main features:
-Edit files directly on your (web)server
-Multiple files opened (Tabs support)
-All operations reachable by keyboard shortcuts
-Text indent on <TAB> key
-Multiple re- and undos
-Search and replace
-Standard operations: Copy, Cut, Paste
-Syntax highlighter (see below)
-Directory Cache (since build 36)";
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 = '';
}
}