var fDesc=new Array();
fDesc[0] = "IndigoTrack system is developed to give total security of your aircraft's information.
Using the IndigoTrack software, you have the possibility to choose who can have access to which aircraft and what information they can view.
IndigoTrack information is mirrored in different locations around the globe, and guarantees a 99.99% up time.
The IndigoTrack is also compatible with a number of other satellite tracking provider's hardware.";
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 = '';
}
}