var fDesc=new Array();
fDesc[0] = "GameSpy Comrade is a nice and easy to use program with many features.
Main features:
- Launch and play over 640 PC games and game demos
- Send instant messages to comrades playing games on the PC, PS2 and more!
- One-click follow friends onto dedicated game servers
- Dynamically track your gameplay stats in Battlefield 2, Battlefield 2142 and more!
- Organize your clans and guilds
- Auto-patch your games
- Integrate with in-game buddy lists and GameSpy Arcade";
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 = '';
}
}