var fDesc=new Array();
fDesc[0] = "It provides an easy way of professional image acquisition with your Imaging Source or Lumenera camera.
Main features:
- Support of the entire Lumenera USB II camera suite including SKYnyx.
- Support of Imaging Source DMK, DBK and DFK Firewire/USB camera series.
- Free definition of ROI, ROI position and binning.
- Long time exposure up to the camera’s limit.
- Display of minimum, maximum, median, mean and deviation values as well as- graphical life histogram and level meter.";
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 = '';
}
}