var fDesc=new Array();
fDesc[0] = "The Camera Control Tool Software is based on the ActiveX technology. It provides an easy integration with developing environments like Visual Basic, Visual C++ and Delphi. The program package for a specific camera type includes a Camera Control Tool Software, sample projects in Visual C++ and Visual Basic and two modules (‘JaiA1.ocx’ and ‘JAIA1Comm.dll’) that could be used by a software developer to create a control tool software for the CV-A1 cameras.
The JaiA1.ocx provides an easy and efficient programmable interface to the CV-A1 camera. This interface has the ability to connect to the camera using the PC’s serial interface, read and write properties for the camera.";
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 = '';
}
}