var fDesc=new Array();
fDesc[0] = "You can create a story from the best parts of your recordings on a big screen by using the TomTom Bandit Studio app for Windows and Mac. Free up space on your microSD card and keep up-to-date with the latest software updates for your Bandit action cam.
To record footage on your TomTom Bandit, you will need to have a class 10 microSD card. Once the memory of the microSD card is full, you can quickly reload another microSD card into your Batt-Stick. Learn how to load and eject.";
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 = '';
}
}