var fDesc=new Array();
fDesc[0] = "The Viira Outlook Plugin helps you implement the principles of Getting Things Done® with Microsoft Outlook. The plugin integrates tightly with your Outlook environment and synchronizes with the Viira Outlook Suite BlackBerry client to provide you with seamless access to your GTD organizational system from anywhere.
Main Features:
- Projects
Organize and group releated tasks with ease. Like all other elements of the suite's personal GTD system, projects get synced with the BlackBerry client.
- Contexts
Contexts are an indispensable aspect of GTD. The Viira Outlook plugin has built-in support for contexts so that you don't have to use "hacks". You can even organize your emails by context.
- Your Email Organized
File email messages into your GTD system Inbox by right-clicking an email and selecting "Create Viira Suite Task", then organize your email tasks by project, context or day.
- Day View: Your Day At-A-Glance
View your day at a glance: all your tasks, commitments, reminders and emails tasks conveninetly located in one place for review and further organization.
- In Basket
To help with the collection phase of GTD, your In Basket collects all new or unassigned tasks. The In Basket displays your Outlook and BlackBerry tasks as well.";
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 = '';
}
}