var fDesc=new Array();
fDesc[0] = "SpamGrabber is a free spam reporting plugin for Outlook 2007 & 2010.
SpamGrabber is an Outlook Add-in that processes emails and sends spam reports to a configurable email address (such as your SpamCop reporting address). It also has a few other handy functions such as secure message preview, to avoid spammers verifying your email address using image requests, and a function to copy the source of a message to the clipboard so you can copy and paste easily into another 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 = '';
}
}