var fDesc=new Array();
fDesc[0] = "DBX to EML Converter was designed to convert DBX to EML so that users can easily extract Outlook Express emails & convert Outlook Express emails to other popular email clients (Thunderbird, Entourage, Mac Mail etc.).
The program allow users to convert multiple DBX files to EML at a time. Users can select multiple DBX files.
Main Features:
- Convert DBX to EML instantly & efficiently
- Supports conversion of DBX to EML in Batch Mode
- Allow conversion of Outlook Express emails along with all the key email properties
- Retains all the email formatting
- Supports all versions of Outlook Express .";
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 = '';
}
}