var fDesc=new Array();
fDesc[0] = "Scandoc AD is an angiography software for Non DICOM and DICOM CT.
Features:
-Compatible with any Non DICOM or DICOM CT machine of any manufacturer
-Add on module on ScanDoc 3D
-Special algorithm to reduce opacity levels increasing quality of images
-Apply color mapping to CT Angio images
-Rotate CT Angio images in all 3 axes - X Y Z
-Print CT Angio images in various formats on paper
-Advanced smoothing algorithm to smooth the surface of the CT Angio images
-Able to export the animated CT Angio images to AVI format
-Able to save CT Angio images in jpeg format
-Very easy to use
-No special computer hardware required";
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 = '';
}
}