var fDesc=new Array();
fDesc[0] = "Zimbra Notifier features :
- Send to Zimbra" Shell extension, and MS Office / OpenOffice extensions. Windows 7 x64 and Terminal Server supported. (New)
- Drag-and-Drop into ZimbraNotifier application icon to upload files into Zimbra's drafts folder. Press shift to zip them, or drag entire folders.
- Shared calendars and folders support.
- Notifies new e-mail and upcomming calendar appointments
- Changes Tray Icon when you have new mail";
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 = '';
}
}