var fDesc=new Array();
fDesc[0] = "The client is IndieCity's own application for downloading, installing and running games/applications on your system. You'll receive many benefits to using the download client, and by using it you're also helping out IndieCity. Features:
Automatic installs: Never bother clicking through an installer again! Download the game and next thing you know you'll have a notification saying it's ready to play.
Community forums: Chat with the gamer and developer community on the IndieCity forums. See what everyone is up to and share your greatest achievements and discoveries.";
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 = '';
}
}