var fDesc=new Array(); fDesc[0] = "TriPlot is a trilinear-diagram plotting program for researchers and students. The goal of this program is to produce publication quality diagrams.

Main Features :
- Unlimited number of points (spreadsheet holds 100,000)
- Customizable point properties on a point by point basis
- Placeable(WMF) and Enhanced(EMF) metafile support for importing into other applications. You can also copy the metafiles through the Windows Clipboard. Note: Win2000/XP coverts WMFs to EMFs when copying throught the Clipboard. Some applications do not display EMFs correctly. You need to break the EMFs apart or import a WMF.
- Normalization of data to a 100% scale
- Control over diagram properties: fonts, fill, axes, etc.
- Windows interface, using standard Windows file open and save, color, and font dialog forms"; 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 = ''; } }