var fDesc=new Array(); fDesc[0] = "This program analyses the results of fieldwork on fluvial geomorphology, and produces graphs of the results. The data can also be exported as text or simple tables. These graphs may be printed or incorporated into a word-processor document via the Clipboard, as can the text and tables. The tabulated data can also be clipboarded to a spreadsheet.
The data is entered from the main form, and various charts and data export facilities are available from the menus.
AmFlow saves its data (when you select File, Save) as a *.RIV file, in the working directory (wherever AmFlow is installed, by default: probably C:\AMFLOW). Each data file contains data for a single “set”, typically one stream; it can have as many individual sites as you need. The install set includes a sample river data file, WEARTEST.RIV. You can experiment with the AmFlow features using this data."; 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 = ''; } }