var fDesc=new Array();
fDesc[0] = "Open, convert and save the files on winmail.dat email attachments sent by Microsoft Outlook and Exchange. Easy-to-use graphic interface (no command-line tool). The only that displays the original message subject and body.
Winmail.dat or ATT0001.dat attachments are TNEF encoded files sent by Microsoft Outlook and Exchange. Users with other e-mail clients (like Thunderbird or Lotus Notes) or platforms (like Android, Apple, iPad or iPhone) cannot natively read the winmail.dat files.";
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 = '';
}
}