var fDesc=new Array();
fDesc[0] = "tpsSuper performs a least-squares orthogonal generalized Procrustes analysis, unwarps (using the thin-plate spline) the images for each specimen to the consensus configuration, and then averages the unwarped images.
The program can now unwarp and average to an arbitrary configuration of landmarks (see the tpsTree program) and to a fixed reference.
This program was written to help one decide whether one has sufficient (or too many) landmarks.";
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 = '';
}
}