var fDesc=new Array(); fDesc[0] = "Teroid Solstice is a Windows application providing statistical analysis and graphical representation of any data source for which an OLE DB provider is available.
- Connect to any data source
- Select up to 2 value columns and 2 descriptive columns
- Specify class intervals
- Display raw or two-way data
- Display statistics in a grid or form
- View graphical representations of data as Column Graph, Line Graph, Pie Chart, Box Plot or Scatter Diagram"; 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 = ''; } }