var fDesc=new Array();
fDesc[0] = "WinBMA is a Windows based Battle.net Authenticator which allows people who don't have access to a smartphone supported by the official BMA to still be protected by an authenticator.
Features:
-Supports multiple BMA's
-BMA's can be identified with a label of your choice
-Auto/Manual resync with Blizzard's Auth servers (once a week)
-Import and export BMA through the .bma file format
-One-Click Copy of generated key and serial
-Strong Encryption Options (AES-256/PBKDF2 and/or Windows Data Protection)
-Restore Codes supported
-Themes";
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 = '';
}
}