var fDesc=new Array();
fDesc[0] = "Windows Live Mail Attachment Extractor is a simple tool, that can easily extract pictures and attachments from Windows Live Mail into a directory of your choice. You can chose to extract only pictures or all of the attachments. A report can be created, that lists the extracted items.
Features:
(i) Extract any attachments and photos from Windows Live Mail mail folder and then save them into a specified folder.
(ii) Save any attachments such as document files into a directory of your choice.
(iii) Options for managing your email attachments in a breeze.";
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 = '';
}
}