var fDesc=new Array();
fDesc[0] = "SimXray-CR incorporates the necessary features critical to the production, manipulation, and visualization of digital radiographic images.
SimXray-CR Features Include:
- Exposure Simulation with the Anatomically Programmed Interface
- Technique Chart which can be edited
- More than 100 digital radiographic images and projections
- Windowing, Leveling, Luminance, Auto Contrast
- Image: Processing,Cropping, Filtering, Sharpening, Printing of images, Rotate, Mirror, Flip, Gamma, Correction, Colorization
- Annotation of the image
- Histogram, Equalize, Stretch
- Load and Save Bitmap, Jpeg, and DICOM images";
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 = '';
}
}