var fDesc=new Array();
fDesc[0] = "Exhalation-B is a free DICOM directory and file Browser. This software can be used to get a quick overview about the images. It has a quick preview and a full window view of the images of a directory. You can also see the DICOM Tag information of the image file.
Main Features:
- Full screen view, now with person- and image data overlay
- First command line parameter of Exhalation-B now supports DICOMDIR or a single DICOM image (Drag and Drop is possible)
- Menu support
- Tiff export
- Stability bug fixes.";
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 = '';
}
}