var fDesc=new Array();
fDesc[0] = "Quick Fringe is used to extract quantitative wavefront accuracy measurements from a laser interferogram. Interfacing with optical interferometers via a video camera and frame grabber, Quick Fringe produces accurate test reports with a minimum of effort.
Renowned for its ease of use, Quick Fringe has been used for applications ranging from telescope manufacturing to cross-checking Hubble Space Telescope instrumentation.
-Automatic fringe tracing with manual edit option
-Quick and accurate analysis
-User-configurable printed test reports
-Directly captures frames from a wide range of video sources";
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 = '';
}
}