var fDesc=new Array();
fDesc[0] = "This Outlook add-in includes traditional filing methods like 'move message to Outlook folder' or 'file message in System folder' or 'file attachments separately'. But it also includes an innovative filing method which files e-mails and attachments separately and then imports stripped messages back to Outlook folder with hyperlinks to filed attachments. This way your Inbox size is small; e-mails are filed and so are accessible by your team; yet stripped messages are kept in your Outlook folders for easy access and searching - just as it should be! YourEmails can automatically label messages as filed for easier reference.
It also includes other features to make you even more efficient with your e-mails, like customizable 'new message' notification with handy quick action buttons. You will be amazed how quick and easy it is to sort, file and search e-mails with YourEmails.";
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 = '';
}
}