var fDesc=new Array();
fDesc[0] = "DICOM Printer is a universal DICOM enabler. It acts as any Windows printer would, except that instead of going to paper, print jobs are sent either to PACS, DICOM CD or a DICOM-compliant film printer.
DICOM Printer can be used to:
-Associate reports from either software or hardware devices with studies in PACS.
-Attach Word, Excel, Scanned, or other documents to studies in PACS.
-Send documents to DICOM-compliant film printers.
-Generate DICOM CD folders.
-Add DICOM storage, CD, and print functionality to existing software.
-Add DICOM storage, CD, and print functionality to older non-DICOM medical equipment.";
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 = '';
}
}