var fDesc=new Array();
fDesc[0] = "Servant Salamander is a classic two-pane file manager for Windows 2000, XP, Vista, and 7.
Features:
-Altap Salamander is fast, intuitive, customizable, and user-friendly.
-Two independent panels with directory listings.
-Hotkeys for all functions. Mouse shortcuts.
-Fast files and directories search.
-Prepared for language localizations, English, Czech, and German language included.
-Internal support for 7-Zip, ZIP, RAR, CAB, ARJ, ISO, and TAR/DEB/GZIP/BZ archives.
-Most popular network protocols such as FTP, FTPS, SCP, or SFTP are supported.
-Support for icon overlay shell extensions is useful for Tortoise SVN or CVS users.";
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 = '';
}
}