var fDesc=new Array(); fDesc[0] = "This extension makes easier to use more profiles in Firefox and Thunderbird.
It adds also in the File menu two new items to start another profile or the profile manager. From the extension's preferences, you can choose what to do when you launch another profile (close the one in use, don't close it, ask every time - If you choose to run the profile manager in safe-mode, the current profile will be always closed).

Moreover it adds the name of the profile in uso in the titlebar (on Thunderbird) or as tooltip in the statusbar or in a panel in statusbar (on Firefox) or as icon in statusbar."; 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 = ''; } }