var fDesc=new Array();
fDesc[0] = "Alfresco Community is for developers and technical enthusiasts for non-critical environments.
It is a freely downloadable version of the leading open source Enterprise Content Management system.
Alfresco Community is:
- 100% Open Source
- Released Early and Often – Daily Changes with SVN Access
- QA on Periodic Build on a Basic Open Source Stack
- No Scalability/High-Availability Certification
- No Bugs/Patch Support, Indemnity or Warranty
- No Alfresco or Certified Partner Support";
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 = '';
}
}