var fDesc=new Array();
fDesc[0] = "Rename like in a text editor Bookmarks easy reachable Unreachable network paths don't lock the application Built-in File search functionality Encrypt / Decrypt files on the fly. Context-Menu fully customizable Shortcut Toolbar customizable Recursively calculate size of folders Preview of images Built-it per drive Recycler-Bin Administration Set a different color for each files and folder Built-in Hex-Editor which does not load the whole file in RAM Text-Viewer for large files Create a folder with selected files Create a file with current clipboard contents Supports paths longer than 260 characters";
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 = '';
}
}