var fDesc=new Array();
fDesc[0] = "It is a package intended for creating integrated expandable medical images storage, in order to store large amounts of data obtained from the different medical diagnostic equipment. It provides long-term medical study storage, is able to integrate various DICOM-devices in one network, provides access to medical studies through web-interface. It supports integration with HIS and RIS via HL7 interfaces. It works like a VNA (vendor neutral archive). Supports store any DICOM instances, view many instances via web interface. It includes DICOM HTML5 web viewer.";
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 = '';
}
}