var fDesc=new Array();
fDesc[0] = "Painless Extraction Scriptor combines the data extraction and analysis capabilities of Painless Extraction & Painless Extraction Noise Figure with a new Custom Dialog Utility and an External Program Caller in an easy to use interface to automate testing through scripting.
Create custom script files to automate testing.
Call Painless Extraction and Painless Extraction Noise Figure in one convenient and easy to use interface.
Utilize the Custom Dialog Creation Utility to make custom prompts that alert the tester.
Generate notifications whenever tested parts fail the specified criteria.
View automated testing results in a clear and concise manner.
A Summary of Results table displays the pass/fail results for all parts tested.
Include comments in the summary file to clarify the report.";
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 = '';
}
}