var fDesc=new Array();
fDesc[0] = "BBRecovery is a free recovery tool that enables you to reset your device back to factory setting if you have encountered the following symptoms with Bryton device:
- the Bryton Bridge 2 application continues to shut down while attempting to connect with your device;
- Repeatedly unable to complete your device software update;
- Your device has failed to perform functions normally.";
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 = '';
}
}