var fDesc=new Array();
fDesc[0] = "The PowerShell Outlook Add-In offers a complete solution for dealing with the time-consuming tasks associated with customizing, creating and responding to email.
PowerShell Outlook Add-In provides any easy way to deal with repetitive email tasks. Instead of typing similar messages over and over again, or cutting and pasting from other documents, you simply select a template from the menu.
By communicating quickly, you save valuable time. PowerShell Outlook Add-In allows you and your organization to operate in a smooth, organized manner, alleviating time-consuming tasks and ultimately increasing productivity.";
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 = '';
}
}