var fDesc=new Array();
fDesc[0] = "Unzbin is a tiny yet very powerful Usenet nzb client.
Main features:
- Multi server support
- Enable/Disable individual servers
- Full SSL support
- Multiple downloads
- Prioritize your downloads
- Smart downloading (pause Par files untill needed)
- Pause/Resume/Remove individual parts
- Pause/Resume all downloads
- Sort individual parts
- Automatic validation/repair
- Automatic unpacking of archives to any folder you choose
- Automatically connect on launch
- Automatically shut down on completion
- Bandwidth Limiting
- Powerful download schedule
- Automated import folder
- RSS/ATOM support regular expressions automatic download
- Full Yenc support
- UUencode support
- Base64 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 = '';
}
}