var fDesc=new Array();
fDesc[0] = "If you ever wanted to post pictures, videos, or any other kind of binary files to the Usenet newsgroups, then you probably know how frustrating this can be, especially if you want to post them in yEnc format. However, with the right tool, this process can be greatly simplified.
Easy Post is the software designed for easy posting of binary files to the newsgroups.
Main features:
- Very easy posting of files to the Usenet - drag and drop files to the program, select newsgroups to post to, type a subject and click "Post" button and they are away
- Stay in control of the process - Files can be sorted by filename or by file size (both ascending or descending) and posted in that order
- Ability to configure account automatically - Simply click "Get Default" button and you get account settings transferred from Outlook Express to Easy Post
- More control - You can stop posting at any time and also if there is an error, incorrectly posted files stay in listview and are marked with red color
- Automation - It does a number of small tasks for you - splits large messages, automatically inserts new newsgroups in the list, marks subjects with file counters and more
- Free of charge";
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 = '';
}
}