var fDesc=new Array();
fDesc[0] = "Solitaire Chronicles: Wild Guns is a combination of game genres like match 3 and solitaire card games. Its main theme is the wild west.
Shannon and Red Wolf have been astray for a while when they bump into a deserted town. For them, it's a chance to build themselves a home! You help them resurrect the settlement by scoring high, earning points, and buying useful items.
You can also collect stars and see your city grow.";
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 = '';
}
}