var fDesc=new Array();
fDesc[0] = "DCMburner Software is a product that provides automated disc burning capabilities to easily create stunning CDs or DVDs for referring physicians or patients. The appliance uses a disc publishing robot to uniquely label discs.
Main features:
- Intuitive User interface turns novices into experts in minutes.
- Receives and stores DICOM images onto a custom labeled CD/DVD coming from a DICOM-network.
- Dicom Query/Retrieve.
- Burn studies from your web browser.
- Burn studies automatically as soon as it is received.";
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 = '';
}
}