var fDesc=new Array();
fDesc[0] = "Sante DICOMDIR Viewer is a free DICOM directory viewer. Sante DICOMDIR Viewer can be used to get a quick overview of the DICOMDIR's structure and contents. Just browse for the DICOMDIR file, load it and see the full description. In the right corner you will see a small window with the image preview.";
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 = '';
}
}