var fDesc=new Array();
fDesc[0] = "DBXanalyzerTM reads, analyses and manages email data files created by Microsoft Outlook Express 5 and 6.
The DBX file does not have to be a current one - it can be an archived copy from your backup, or one from a different computer. DBXanalyzer does not replace your Outlook Express (OE) email client, nor does it alter or change your existing DBX files; rather it enables you to backup, manage and restore the emails in its message store. If you don't know what a DBX file is or how OE stores your emails.
Main Features:
- Lists all emails stored in any valid DBX file.
- Sort by subject, sender, time received, time sent, email account, size, and message ID.
- View the message source of individual emails.
- Export individual emails to non-proprietary EML or TXT files.
- 'Export All' function with a unique name for each file.
- Analyse each email with MIMEanalyzeTM and detach attachments from their original files, even attachments within attachments.";
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 = '';
}
}