var fDesc=new Array(); fDesc[0] = "This software provides the tools to configure various Trimble GPS receivers. Configuring a receiver involves changing the settings that control how the receiver operates. The configuration settings are stored in an application file (*.cfg).

With Configuration Toolbox you can:

- Create an application file

- Transfer the files to and from your receiver

- Manage the files stored in the receiver

You can store application files on both your receiver and computer. The receiver also stores two special applications files: Defaults and Current. These files represent the default and current receiver configurations."; 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 = ''; } }