var fDesc=new Array();
fDesc[0] = "The EZ-Guide ® 500 CFFE Name Creation utility from Trimble enables you to create a list of client, farm, field, and event (CFFE) names on an office computer or laptop and then load the list onto your EZ-Guide 500 lightbar through the USB drive. You can then select these names from the existing names list, rather than entering them with the virtual keyboard.
You can:
- Enter up to 20 Client, Farm, and Event names
- Enter up to 60 Field names
- Create new configuration files
- Load existing configuration files and then edit them";
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 = '';
}
}