var fDesc=new Array();
fDesc[0] = "This allows you to interact with Easy Projects without leaving Outlook. It?s perfect for tracking projects, checking tasks, quick updates and attaching files.
This great tool allows your team to:
-View their assignments;
-Update status and progress;
-Synchronize calendar and contacts;
-Attach files to projects & activities;
-And much more?
There are some really cool features that we?re really excited about?
Convert E-mail to Activity
The add-in will allow you to take any email in your mailbox and with just a few clicks convert it into a new task transferring over all attachments.
Real-time Collaboration via Messenger
Using the Messenger functionality you can chat with other team members in real time and the entire communication history will be saved in a task or a project.";
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 = '';
}
}