var fDesc=new Array();
fDesc[0] = "GSB is an application used to navigate the ever-growing list of game servers that one might join.
Features:
-See the list on the left to see which games are currently supported and which will be supported in the future.
-Supported games are automatically detected on your hard drive (user-overridable).
-Periodic updates add support for new games and enhance support for games already supported.
-If your games are not correctly detected, you can override the detection criteria in the Settings dialog by directly identifying the game executable.";
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 = '';
}
}