var fDesc=new Array();
fDesc[0] = "The real time software optris PI Connect sets benchmarks within the thermography branch and offers its users extensive recording and analysis possibilities.
Main features:
-No limitation in licensing
-Complete remote control of the thermal imager
-High degree of individualization for customer specific adjustments
-Extensive online and offline analysis
-Automatic process control
-Temperature date analysis and documentation
-Video recording and snap shot function
-Linescanner function for measurement of moving objects with limited optical access";
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 = '';
}
}