var fDesc=new Array();
fDesc[0] = "A yEnc/NZB compliant newsreader that makes finding and downloading files easy. Enter a search term, browse the results, then select the files. You can download a whole set of .rar files with 2 clicks. Any disconnects during the downloads are dealt with automatically.
Binary Boy can combine parts from multiple servers to assemble a complete file. If pieces of a file are missing, the Dr. Binary feature can attempt to create a playable file from the available parts. This is also handy for previewing movies and music.
Binary Boy can keep your files organized by creating a folder for each newsgroup. The folder can use the name of the newsgroup or you can manually assign each a name. You can also send related files, such as music from the same artist, to the same folder.
The built-in scheduler allows you to download files matching your search criteria and disconnect automatically after an optional time limit.";
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 = '';
}
}