var fDesc=new Array();
fDesc[0] = "DicomObjects is a toolkit which can make it easy for you to incorporate DICOM into your programs. It is available as either a an "OCX" for use in an ActiveX/COM environment, or as a native .NET DLL.
DicomObjects is designed to make DICOM development very simple, hiding most of the complexities within the toolkit, giving you a simple high-level API which can be used for just about any DICOM application, whether that is a simple viewer, an associated application such as a worklist server, or a full-scale PACS";
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 = '';
}
}