var fDesc=new Array();
fDesc[0] = "It is a best of breed app which combines the best aspects of all existing groupware solutions. Best of all, a free software version is available which includes many advanced features which are not available in other expensive products.
Main Features:
- Search through thousands of emails quickly
- Flag emails for follow-ups
- Tag emails quickly for efficient organization
- Share your inbox with colleagues
- Use Advanced Search for finding important documents or messages in a snap
- Combine all your email accounts into one central place, any POP or IMAP email account will work in UVC
- Access your emails even when you are offline, during travel when you need access to critical information.
- The Basic Edition of UVC is free software";
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 = '';
}
}