var fDesc=new Array();
fDesc[0] = "A universal solution for data acquisition, analysis and reporting of optical loss, power & ORL. Use it today with your existing test gear!
-Click results directly into your custom acceptance report from any KI 7000 series
-When used with a KI734x Two-Way Instrument, 8 seconds is all it takes to analyze and record the bi-directional loss and ORL at both ends of a link
-Real time data capture for any Windows PC. Also supports manual data entry for legacy gear";
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 = '';
}
}