var fDesc=new Array();
fDesc[0] = "S911 Configuration Utility it's a stand-alone utility package for the following Laipac's GSP tracking products:
- S911 Personal Locator V4
- Starfinder Lite 201
Features:
- SOS call strategy
- G-sensor configuration
- Power saving mode configuration";
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 = '';
}
}