var fDesc=new Array();
fDesc[0] = "Galaxy Examinator Production takes the Examinator product and adds a database feature. The engineer can create a local database and manage it by adding data for Galaxy to query. For those with lots of data in a corporate database, Galaxy Production can interface with that too!
Configured for production yield enhancement, root cause analysis. Suitable for analysis of large data sets and multiple lots (trends, dispersions, test/ bin, etc.)
Examinator (the combination of EXAMINe translATOR) is a software solution that enables test and product engineers to perform device characterization, production monitoring, and yield analysis studies from standard semiconductor data files such as STDF, Agilent GDF, e-Test (WAT and PCM), CSV, RosettaNet, etc.";
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 = '';
}
}