var fDesc=new Array();
fDesc[0] = "Irradiant eFiler is an Outlook plug-in which enables you to save your emails in network folders with your other documents and search through them without leaving Outlook. Messages are stored in the common .msg format so they are future-proof to secure your email knowledge. With this program saving emails is simple and searching for them is quick, easy and effective.
Features:
- Presents a list of filing locations with the one you want at or near the top for quick filing.
- Quick filter for filing locations.
- Fast index updates for more accurate search.
- Quick filter for filing locations.
- Auto-index any added location.
- Sort results by subject, date, sender, recipient, attachments or folder location.
- Context menus for quick navigation.";
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 = '';
}
}