var fDesc=new Array();
fDesc[0] = "This plug-in is an add-on to PowerArchiver and will not function if PowerArchiver is not installed.
PAOP is designed to offer the functionality of PowerArchiver from within your Microsoft Outlook® e-mail application.
Features :
- Rename extension of attachment automatically to bypass mail filters.
- Exclusions based on extension with predefined commonly used extensions.
- Name attachment based on first file and filter based on minimum file size.";
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 = '';
}
}