var fDesc=new Array();
fDesc[0] = "Arc is a tool that brings your favorite games, communities, media and
entertainment together onto one easy-to-use platform. Just install, update and launch into your favorite online games all in one place. Browse and download games with a beautifully designed easy-to-use interface. It contains a lot of the best online games to play, like: Forsaken World, Neverwinter or Star Trek Online.";
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 = '';
}
}