var fDesc=new Array();
fDesc[0] = "The PMIS® Image Processing Software product family was designed to completely control scientific grade monochrome camera systems using Windows® based personal computers. PMIS contains speed optimized visualization and image processing routines that are significantly faster than any competitive product.
Image acquisition
- Complete camera control
- Flexible image sequence acquisition
- PCO and The Cooke Corporation Camera Support
- Supports both CCIR and RS-170 video standards
- New SensiCam systems
- Roper Scientific/Photometrics Camera Support
- Series 200 cameras
- 16 bit PVCAM based cameras
- 32 bit PVCAM based cameras
- User defined camera control scripts
- Complete Image Point camera support";
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 = '';
}
}