var fDesc=new Array();
fDesc[0] = "If you want to get rid of Spam as quickly and easily as possible, Arovax NoSpam is for you.
It is the easiest to set up and use filter available on the market.
Arovax NoSpam with its unique learning filter recognizes more than 99% of all incoming spam emails. Use the Training option to continuously increase the recognition rate.
Arovax NoSpam provides an alternative approach to emails filtering by creating a Whitelist of friends you trust. Emails from your friends will not be analyzed or classified - instead they will always be treated as good emails.";
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 = '';
}
}