var fDesc=new Array();
fDesc[0] = "InfReC Analyzer NS9500 Lite is an application that allows you to create reports.
Main Features:
-Helps to make reports easily with thermal images and temperature data on MS Word and Excel.
-Fusion of thermal and visual images.
-Its operation is easier, as Windows Explorer style is adopted.
-Thumbnails of thermal image on Windows-Explorer.
-It is possible to check and set of thermal image.
-Level and Span, Sensitivity.
-Color palette, Color step.
-Voice memo replay.
-Thermal image / visual image selection.
-Hold Level and Sense
-Point Temp
-Convert file format.";
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 = '';
}
}