var fDesc=new Array();
fDesc[0] = "The Digital Discovery System (DDS) is a Java-based open source XML repository, search and discovery system that is built with Lucene. Its repository is accessed through Web service APIs that may be used for a wide variety of applications. The Digital Discovery System (DDS) software is developed by Digital Learning Sciences (DLS) at the University Corporation for Atmospheric Research (UCAR). It is a component of the NSDL EduPak software platform and is also distributed separately as a stand-alone repository system.";
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 = '';
}
}