var fDesc=new Array();
fDesc[0] = "DigiPro for Windows is computer software designed to process and graph inclinometer data.
Productivity Features
Easy Graphing: Choose an installation, choose the type of graph you want, and click Ok. With just three clicks, your inclinometer data is reduced and plotted. Then you can fine-tune the graph by adjusting scales, adding a title block, and including or excluding other datasets.
Reusable Settings: When you save a graph, DigiPro automatically stores your scales, labels, legends, and other settings as a "report." You might have several reports for each installation. For example, you might have one report for cumulative displacement, a second report for incremental displacement, and a third report for time-displacement.
Easy Reports: To process new datasets, you just click on any of your reports. DigiPro retrieves your graph settings, automatically finds the new data, and creates an updated graph.
Specialized Reports: In additional to the standard graphs, you can create any number of specialized graphs. For example, you could create a graph that isolates a particular shear zone. Then, whenever you wanted an update on the shear zone, you would simply click on the shear zone report, with no other steps or manipulations required.
Templates: A template is the starting point for a report. DigiPro supplies some standard templates that you can customize, adding your company logo, etc. Then, whenever you create a graph, your company logo is included. This way, you can create a uniform format and style for all your DigiPro reports.
Listings: When you print a report, you can choose to print a listing of the most recent data, too. You can also print a listing of the plotted data points.";
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 = '';
}
}