var fDesc=new Array();
fDesc[0] = "Bongosoft AntiSpam is an intuitive, easy-to-use, client-based software product that eliminates spam forever from your computer’s email system. It uses 'Passcode Authentication’ technology, a patent-pending, active-filtering algorithm, to authenticate the sender of each incoming email message.
It supports email programs such as Outlook, Outlook Express, Eudora, Netscape or any other POP3 email application.";
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 = '';
}
}