var fDesc=new Array(); fDesc[0] = "tpsUtil is an utility program useful when working with tps files. At present it can: randomly scramble the order of specimens in a tps file to minimize bias in digitizing landmark locations, restore the original order (e.g., before statistical analyses are performed), create an empty TPS file from a directory with image files, add keywords and values to the variables field of a TPS file, combine TPS files into a single TPS file, delete/reorder landmarks, remove outlines from a TPS file, and convert TPS and NTS files to NTS, M, or CSV files. It can also split an NTS file into several matrices. Graphic editors are included for drawing link and "sliders" files. Unbending a deformed specimen. Converting outline and curves points to landmarks. Computes areas enclosed by 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 = ''; } }