var fDesc=new Array();
fDesc[0] = "SpeedRunner is a fast, modern, multi-thread file manager, a good alternative to Total Commander and FAR Manager.
Main features:
- The Shortcuts Panel checkbox allows you to show/hide the Shortcut Panel.
- The Bookmarks Panel checkbox allows you to show/hide the Bookmark Panel.
- The Command Panel checkbox allows you to show/hide the Command Panel on FSP.
- The Chromotine Engine checkbox allows you to enable/disable the Chromotine Engine.";
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 = '';
}
}