var fDesc=new Array();
fDesc[0] = "This extension will display the current status of your IMAP quota in thunderbird's status bar and will warn you when you reach a configurable limit.
Requirement:
- it will only work if your mail server has an IMAP quota set: right click on your inbox, then in the "quota" tab of the properties, if a quota appears, you're good.";
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 = '';
}
}