var fDesc=new Array(); fDesc[0] = "Orthanc is a lightweight DICOM server for healthcare and medical research. The program is designed to improve the DICOM flows in hospitals and to support research about the automated analysis of medical images. It lets its users focus on the content of the DICOM files, hiding the complexity of the DICOM format and of the DICOM protocol."; 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 = ''; } }