var fDesc=new Array();
fDesc[0] = "Intuity Message Manager is an integrated messaging solution that combines the power and flexibility of your personal computer with the feature-rich messaging capabilities of an Avaya Intuity messaging server.
The Intuity Message Manager allows a user to:
- Receive messages from a variety of sources (Avaya voice messages, faxes, Internet/intranet text or HyperText Markup Language (HTML) messages, and text e-mail or file attachment(s) in one complete message-handling application.
- Create and send multimedia messages to other subscribers on the system, or to non-subscribers who are capable of receiving that type of message (voice, fax, text, or file attachment).
- Save these messages to your computer for organized access and retrieval.
- Receive timely notification of new messages.
- Work offline to create and address multimedia messages, and send them when you are ready.";
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 = '';
}
}