var fDesc=new Array();
fDesc[0] = "SSH Factory for .NET is a set of .NET based client components for communicating with SSH servers. SSH Factory for .NET includes both SSH and SFTP (SFTP over SSH) components.
Features:
-Includes both SSH and SFTP (SFTP over SSH) components
-Comprehensive API for building and automating tasks
-Define connection timeout limit for detecting remote servers that are unavailable
-Transfer data securely using industry standard encryption algorithms (SSH)
-Define complex task prompts using regular expresions for use in process automation
-Ability to assign one or or more subscribers to any events published
-Ability to stream data exchanged between the client and server to a file
-100% managed C# written from the ground up with no dependencies on third party libraries
-Redistribute the included components as part of your application without runtime or royalty fees (see license for details)";
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 = '';
}
}