var fDesc=new Array();
fDesc[0] = "SensorStudio is a custom application designed to capture, analyze and demonstrate images.
SensorStudio does not have to be used with a frame grabber. You can read in image files from disk. Plugins (DLLs) are used to interface SensorStudio to a sensor and frame grabber combination.
SensorStudio uses a defined communication mechanism, called the frame grabber API, to talk to all hardware.
To support a sensor and frame grabber combination the appropriate plugin will implement the receiving end of the frame grabber API. The plugin is a self contained unit which controls and captures images from the hardware.";
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 = '';
}
}