var fDesc=new Array();
fDesc[0] = "It is an Outlook add-in designed to print your Outlook e-mails.
Main features:
- Customize your look of your emails easily.
- Avoid Outlook printing problems.
- Save time and money with an easy to use interface.
- Print only the content of an email you really need.
- List the attachments or print them out directly.
- Use your corporate style in your emails, too.
- Print incoming e-mails automatically.";
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 = '';
}
}