var fDesc=new Array();
fDesc[0] = "Priority Matrix software helps you prioritize, focus, and work smarter.
Main features:
- Keep track of important emails: Drag Outlook emails onto Priority Matrix to create tasks.
- Prioritize your work today: Receive daily reports telling you what to work on next & pull your PM items into your Outlook, Lotus, Google, or Apple calendars.";
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 = '';
}
}