var fDesc=new Array();
fDesc[0] = "kMule is intended to be the most lightweight eMule compatible client. While eMule does a great job, it may contain too much bloat for the everyday user and it is updated not often enough to respond to the users wishes.
Features:
- Up-to-date libraries.
- Autoupdate system.
- Automatic ipfilter/mediainfo updating.
- Built-in CA leecher and search fake protection.
- Filename disparity check.
- Enhanced ed2k links and collections with folder support.
- Per-directory sharing permissions.
- SNARL support.";
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 = '';
}
}