var fDesc=new Array();
fDesc[0] = "The Storage SCP Emulator can emulate the storage functionality of a workstation but also of a complete PACS system including Storage Commitment.
Key Features:
- Storage as SCP
- Storage Commitment as SCP (both synchronous and asynchronous)
- DICOM Validation
- Detailed Result logging
- DICOM Dir generation
- Manage duplicate images
- Configurable Storage Commitment Delay";
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 = '';
}
}