var fDesc=new Array();
fDesc[0] = "ClearCanvas ImageServer is a scalable, easy to use, open source PACS server.
Main features:
-Easy to use web-based administration interface
-DICOM C-STORE (SCP/SCU)
-DICOM C-FIND and C-MOVE (SCP)
-Image compression support
-Logical partitioning (i.e. virtual AEs)
-Powerful rules engine for autorouting, compression, etc.
-Duplicate image handling
-Multiple filesystem support
-Archival support to HSM based interfaces.
-Server cluster support
-32-bit and 64-bit Windows 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 = '';
}
}