var fDesc=new Array();
fDesc[0] = "Battery4Life is an application made by skylinx to monitor the battery of your laptop and warn you with a sound you can choose for yourself (or you can load your own sound). You can set the alarm of the application in %.
The Big Red Screen (BRS) alerts you when you didn't heared the alarm, also here you can set the value.";
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 = '';
}
}