var fDesc=new Array();
fDesc[0] = "Microsoft Outlook Mobile Manager (OMM) brings the power of Microsoft Outlook to your portable device. OMM can prioritize your messages and make smart decisions about when to send e-mail. OMM also sends calendar reminders, task reminders, and an Outlook Today-style daily summary to your wireless device.
Main features:
- Supports POP3, in addition to Exchange email accounts.
- Enhanced support for native junk-email filters.
- Extended personalization to examples from arbitrary folders
- Multiple user-interface enhancements
- Support for Windows Vista/Outlook 2007";
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 = '';
}
}