var fDesc=new Array();
fDesc[0] = "MSG 2 PST is utility that allows you to bulk import .msg and .eml files directly into your Outlook email program.
Key Features
- Preserve file system folder structure - the application will create new PST folders for each file system folder.
- Recursively search file system for email files - the application will import a directory email files and to also include all subdirectories during the import.";
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 = '';
}
}