var fDesc=new Array();
fDesc[0] = "The GPS Pathfinder® Controller software is designed to allow you to control a range of Trimble GPS receivers.
The program will run on a range of platforms including:
- Handheld PC Professional (H/PC Pro) running Microsoft Windows CE version 2.11
- Handheld PC 2000 (H/PC 2000) running Microsoft Windows CE version 3.00
- Pocket PC running Microsoft Windows CE version 3.00
- Pocket PC running Microsoft Windows CE 2002
- Microsoft Windows 95
- Microsoft Windows 98
- Microsoft Windows 2000
- Microsoft Windows NT
- Microsoft Windows ME
- Microsoft Windows XP";
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 = '';
}
}