var fDesc=new Array();
fDesc[0] = "PETViewer enables you to view PET (Positron Emission Tomography) images on Windows machines that were acquired with version 7 of the ECAT software package from CTI Inc., typically using a Siemens PET scanner. PETViewer is intended for research purposes only and is not certified for any use whatsoever. You can download PETViewer free of charge, after registering.
Main features:
-Supported formats:
-ECAT� 7.x
-View transaxial, coronal and sagittal slices
-Create a Maximum Intensity Projection and play as an animation
-Choose projection direction (new)
-Export animation to AVI file (new)
-Various standard Colour Lookup Tables (LUT)
-Adjustable colour-window settings
-Gamma correction
-Interpolation
-View extended File Information
-Print overview
-Save slices to bitmap or JPEG (new)
-Copy to Windows clipboard
-Integrated help (Internet Explorer 4.0 or higher required)
-Windows� Shell integration (new)
-System Development Kit (new)";
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 = '';
}
}