var fDesc=new Array();
fDesc[0] = "MinimizeToTray Plus is an extension that makes it possible to minimize Firefox, Thunderbird and other Mozilla based applications to the system tray.
Key Features:
- Minimize application to the system tray.
- Tray menu for preforming certain functions of the programs.
- Start the application minimized at computer startup.
- Ability to always show a tray icon for the application.
- Option to restore minimized windows if application is invoked by another program.
- A number of options to customize the extensions behaviour.
- Various ways of minimize the application; Menu item, keyboard shortcut, and Toolbar Button.
- Available in over 25 different translations/locales.";
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 = '';
}
}