var fDesc=new Array();
fDesc[0] = "Read, view, open, convert and save files on winmail.dat email attachments. Easy-to-use. Graphic interface (no command-line tool). And FREE! Winmail.dat Reader is a freeware application developed in Delphi 2006 and then compiled in Delphi 6. For the moment, it uses the following open source components:
PNGImage
GIFImage
» System Requirements
The application should run in any Windows 32-bit operational system.";
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 = '';
}
}