var fDesc=new Array(); fDesc[0] = "The DICOM Anonymizer can be used to anonymize DICOM files quickly and easily. You can define what type of anonymizing should happen.

It can anonymize individual DICOM files or a complete folder with DICOM files. After anonymization you will see a detailed compare report that shows what attributes have been anonymized and what the new values are.

Everybody who needs to use sensitive medical data should use this tool to protect patients privacy. The tool is easy to use for service engineers, test engineers or developers."; 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 = ''; } }