var fDesc=new Array();
fDesc[0] = "GPS PLUS Collar Manager for your PC is a powerful tool to manage your collars. It is designed to communicate with your collars, the UHF/VHF handheld terminal and GSM ground station and is the basic tool to design your study. You can:
- manage collars and GSM/email communication details,
- read out data from collar, handheld terminal and GSM ground station,
- store, export, display graphically, or erase data,
- export GPS data to more than 150 local grid systems,
- create new GPS schedules, beacon schedules or virtual fence collections to upload to your collar,
- change the configuration of your collar (activity mode, satellite communication, proximity sensor parameters),
-upload collar and handheld firmware.";
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 = '';
}
}