var fDesc=new Array(); fDesc[0] = "PowerCheck provides home electrical safety inspections for owners of older homes, particularly those with knob and tube wiring, to facilitate insurance. Power Check scans the test data and rejects any tests that are outside limits, and won't accept tests that appear to have been done differently from the flight manual procedure. Power Check also warns if the result plots off the chart, or into a bleed valve section. The program takes into account all the variations in power check test procedure required by the flight manual for such things as airspeed of test, engine air inlet style, or in some cases an OAT adjustment. These are often overlooked by crews in the field."; 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 = ''; } }