var fDesc=new Array(); fDesc[0] = "Sante DICOM Editor allows you to edit, view, and convert medical images in DICOM format. It is ideal for radiologists, medical imaging professionals, and any other specialist that handles patient images in DICOM format. Built-in anonymizer can remove annotations and personal details of patients (suitable as well for avoiding issues with the GDPR regulation 2016/679 of EU)."; 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 = ''; } }