var fDesc=new Array();
fDesc[0] = "Agilent Technologies' TestExec SL is a customizable, flexible test executive developed specifically for electronics manufacturing functional test applications across multiple industries.
This off-the-shelf test executive empowers test developers with a fully customizable operator interface, open architecture for multiple instrument integration, flexible test sequencing, easy debugging tools and provisions for line integration in most manufacturing test environments.
Main features:
-Intelligent Architecture - supports C/C , VB, C#, VB.NET, Agilent VEE, etc.
-Switch Manager - streamlines the task of switching topology configuration.
-Test Profiler - evaluates and optimizes the performance throughput of individual tests.
-Throughput Multiplier - increases throughput through batch testing for multiple UUTs.
-Reusable Library - provides framework for code reuse (handlers, actions, and test sequences).
-Operating system - Windows® XP Professional or Home Edition, Service Pack 2 or later. Windows® 2000 Professional, Service Pack 4 or later.";
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 = '';
}
}