var fDesc=new Array();
fDesc[0] = "Canto Cumulus makes it easy for your workgroup or large organization to quickly organize, find, share, and track an ever-increasing number of files: photos, logos, presentations, videos, Office, Adobe, or Quark files—anything digital.
Enterprise Edition is available for any product configuration and provides increased scalability and flexibility over the Workgroup Edition.
Main features:
- Archive your entire digital asset library.
- Easily find files through metadata search.
- Collaborate within your Local Area Network.
- Publish your files in a read-only form to an unlimited audience via the web.
- Collaborate with colleagues via the internet.
- Extend the Cumulus functionality even further and integrate with your custom environment using add-ons and plug-ins which are compatible with any product configuration.";
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 = '';
}
}