var fDesc=new Array();
fDesc[0] = "Radio Activation Manager is a free application that allows you to disable (deactivate) the Bluetooth radio on your Trimble Pro Series receiver.
This app is compatible with the following products:
- Pro 6H/6T receivers.
- GeoExplorer 6000 series handhelds.
- GeoExplorer 3000/2008 series handhelds.
- GeoExplorer 2005 series handhelds.
- GPS Pathfinder ProXH/XT receivers.
- GeoBeacon receiver.
- Geo 5T handheld.
- Juno 3 Series handhelds.";
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 = '';
}
}