var fDesc=new Array();
fDesc[0] = "RS Image is an image-acquisition software package designed to support all PVCAM camera functions under an intuitive user interface.
Features include:
-Color and monochrome camera support
-Exposure control for auto-exposure, bias, dark, raw, and corrected image acquisition
-Sequence acquisition and viewing
-Region of interest (ROI) and binning definition
-CCD temperature control
-Brightness, contrast, and gamma control for color and monochrome images
-Independent focus and acquire parameters
-RGB color merge
-Display scaling and thresholding
-User-defined "Experiment Setup" files
-Ability to save as TIF (8-, 16-, 24-, and 48-bit formats), JPG, and BMP files
-Complete Help file";
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 = '';
}
}