var fDesc=new Array(); fDesc[0] = "The NCC-CIR Viewer shows you the DICOM formatted files provided in the site. All the basic image-processing functions (contrast/gray level control, zoom-in/zoom-out, scroll etc.) allow you to adjust the image by using the mouse, while the results can be obtained simultaneously. It also offers a host of other useful functions including comment and measurement functions."; 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 = ''; } }