var fDesc=new Array(); fDesc[0] = "GeoFryPlots performs strain analyses using the Fry point-to-point method. Data can be either read in from an ascii file (as pairs of x,y coordinates) or can be digitised directly into a data window using the mouse. Bitmap images to be digitised can be loaded into the data window from file. Fry plots are displayed in a separate FryPlot window within which a best-fit strain ellipse to the plot can be constructed using the mouse. Data and plot windows can be printed or copied to the clipboard, and digitised data can be saved to file. - see bugfix history for most recent changes."; 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 = ''; } }